refactor: rename package from RNS.Interfaces to ble_reticulum

Fixes namespace collision with Reticulum's own RNS.Interfaces package.
When both packages were installed, the collision caused import issues
and prevented BLE discovery between devices.

Changes:
- Rename src/RNS/Interfaces/ to src/ble_reticulum/
- Update pyproject.toml package configuration
- Update all imports in source and test files

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
torlando-tech 2025-12-29 23:30:07 -05:00
commit 2fbb9c3ad2
28 changed files with 49 additions and 49 deletions

View file

@ -56,7 +56,7 @@ class TestEventDrivenDBusMonitor:
@pytest.fixture
def mock_gatt_server(self, mock_driver):
"""Create mock GATT server with event-driven monitoring setup."""
from RNS.Interfaces.linux_bluetooth_driver import BluezeroGATTServer
from ble_reticulum.linux_bluetooth_driver import BluezeroGATTServer
server = Mock(spec=BluezeroGATTServer)
server.driver = mock_driver