ubox-cli 0.0.1__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.
ubox_cli/__init__.py ADDED
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ """
4
+ UBox CLI工具包
5
+
6
+ 通过命令行操作UBox设备自动化能力
7
+ """
8
+
9
+ from . import cli
10
+ from . import ubox_handler
11
+ from . import ubox_config
12
+
13
+ __version__ = "0.2.0"
14
+
15
+
16
+ def main():
17
+ """主入口点"""
18
+ cli.main()
19
+
20
+
21
+ __all__ = [
22
+ "main",
23
+ "cli",
24
+ "ubox_handler",
25
+ "ubox_config",
26
+ "__version__",
27
+ ]