must-tui 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,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1 @@
1
+ 3.12
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: must-tui
3
+ Version: 0.1.0
4
+ Summary: A simple TUI to inspect MUST telemetry and housekeeping.
5
+ Author-email: Rik Huygen <rik.huygen@kuleuven.be>
6
+ Requires-Python: >=3.12
7
+ Requires-Dist: cgse-common>=0.17.3
8
+ Requires-Dist: pandas>=2.3.3
9
+ Requires-Dist: requests>=2.32.5
10
+ Requires-Dist: rich>=14.2.0
11
+ Requires-Dist: textual-dev>=1.8.0
12
+ Requires-Dist: textual-plot>=0.8.1.post1
13
+ Requires-Dist: textual-plotext>=1.0.1
14
+ Requires-Dist: textual>=6.8.0
15
+ Requires-Dist: thefuzz>=0.22.1
File without changes
@@ -0,0 +1,36 @@
1
+ [project]
2
+ name = "must-tui"
3
+ version = "0.1.0"
4
+ description = "A simple TUI to inspect MUST telemetry and housekeeping."
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ dependencies = [
8
+ "cgse-common>=0.17.3",
9
+ "pandas>=2.3.3",
10
+ "requests>=2.32.5",
11
+ "rich>=14.2.0",
12
+ "textual>=6.8.0",
13
+ "textual-dev>=1.8.0",
14
+ "textual-plot>=0.8.1.post1",
15
+ "textual-plotext>=1.0.1",
16
+ "thefuzz>=0.22.1"
17
+ ]
18
+ authors = [
19
+ { name = "Rik Huygen", email = "rik.huygen@kuleuven.be" }
20
+ ]
21
+
22
+ [project.scripts]
23
+ must-tui = "must_tui.__main__:main"
24
+
25
+ [tool.uv]
26
+ package = true
27
+
28
+ [tool.hatch.build.targets.wheel]
29
+ packages = ["src/must_tui"]
30
+
31
+ [tool.hatch.build.targets.wheel.force-include]
32
+ "src/data" = "must_tui/data"
33
+
34
+ [build-system]
35
+ requires = ["hatchling"]
36
+ build-backend = "hatchling.build"