rvt-monitor 0.1.0__tar.gz

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.
@@ -0,0 +1,27 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ venv/
8
+ .venv/
9
+ ENV/
10
+
11
+ # PyInstaller
12
+ build/
13
+ dist/
14
+ *.spec.bak
15
+
16
+ # Logs
17
+ logs/
18
+
19
+ # IDE
20
+ .idea/
21
+ .vscode/
22
+ *.swp
23
+ *.swo
24
+
25
+ # OS
26
+ .DS_Store
27
+ Thumbs.db
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: rvt-monitor
3
+ Version: 0.1.0
4
+ Summary: BLE Device Monitor for Ceily/Wally
5
+ Author-email: Rovothome <chandler.kim@rovothome.com>
6
+ License: MIT
7
+ Requires-Python: >=3.10
8
+ Requires-Dist: bleak>=0.21.0
9
+ Requires-Dist: fastapi>=0.109.0
10
+ Requires-Dist: platformdirs>=4.0.0
11
+ Requires-Dist: uvicorn[standard]>=0.27.0
12
+ Description-Content-Type: text/markdown
13
+
14
+ # RVT-Monitor
15
+
16
+ BLE Device Monitor for Ceily/Wally
17
+
18
+ ## Install
19
+
20
+ ```bash
21
+ pip install rvt-monitor
22
+ ```
23
+
24
+ ## Run
25
+
26
+ ```bash
27
+ rvt-monitor
28
+ ```
29
+
30
+ Opens browser at http://127.0.0.1:8000
@@ -0,0 +1,17 @@
1
+ # RVT-Monitor
2
+
3
+ BLE Device Monitor for Ceily/Wally
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pip install rvt-monitor
9
+ ```
10
+
11
+ ## Run
12
+
13
+ ```bash
14
+ rvt-monitor
15
+ ```
16
+
17
+ Opens browser at http://127.0.0.1:8000
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "rvt-monitor"
7
+ version = "0.1.0"
8
+ description = "BLE Device Monitor for Ceily/Wally"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ { name = "Rovothome", email = "chandler.kim@rovothome.com" }
14
+ ]
15
+ dependencies = [
16
+ "fastapi>=0.109.0",
17
+ "uvicorn[standard]>=0.27.0",
18
+ "bleak>=0.21.0",
19
+ "platformdirs>=4.0.0",
20
+ ]
21
+
22
+ [project.scripts]
23
+ rvt-monitor = "rvt_monitor.main:main"
24
+
25
+ [tool.hatch.build.targets.wheel]
26
+ packages = ["rvt_monitor"]
27
+
28
+ [tool.hatch.build.targets.sdist]
29
+ include = [
30
+ "rvt_monitor/**/*.py",
31
+ "rvt_monitor/static/**/*",
32
+ ]
@@ -0,0 +1,3 @@
1
+ """RVTool - BLE Device Control Application."""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1 @@
1
+ # BLE module