mavpilot 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
mavpilot/__init__.py ADDED
@@ -0,0 +1,14 @@
1
+ """mavpilot — async PX4 drone controller via MAVLink."""
2
+ __all__ = [
3
+ "DroneController",
4
+ "DroneError",
5
+ "Position",
6
+ "MarkerObservation",
7
+ "PrecisionLandStatus",
8
+ "PrecisionLandResult",
9
+ ]
10
+
11
+ from .controller import DroneController, DroneError
12
+ from .types import MarkerObservation, Position, PrecisionLandResult, PrecisionLandStatus
13
+
14
+ __version__ = "0.2.0.dev0"
mavpilot/__main__.py ADDED
@@ -0,0 +1,12 @@
1
+ """python -m mavpilot entrypoint."""
2
+ import asyncio
3
+ import sys
4
+
5
+ from .cli import main
6
+
7
+ if __name__ == "__main__":
8
+ try:
9
+ asyncio.run(main())
10
+ except KeyboardInterrupt:
11
+ pass
12
+ sys.exit(0)