ssot-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,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: ssot-tui
3
+ Version: 0.1.0
4
+ Summary: Terminal UI package for ssot-registry workflows.
5
+ Author-email: Jacob Stewart <jacob@swarmauri.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/groupsum/ssot-registry
8
+ Project-URL: Repository, https://github.com/groupsum/ssot-registry
9
+ Project-URL: Issues, https://github.com/groupsum/ssot-registry/issues
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+
13
+ # ssot-tui
14
+
15
+ `ssot-tui` is a starter package for an SSOT terminal user interface.
@@ -0,0 +1,3 @@
1
+ # ssot-tui
2
+
3
+ `ssot-tui` is a starter package for an SSOT terminal user interface.
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "ssot-tui"
7
+ version = "0.1.0"
8
+ description = "Terminal UI package for ssot-registry workflows."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
13
+
14
+ [project.urls]
15
+ Homepage = "https://github.com/groupsum/ssot-registry"
16
+ Repository = "https://github.com/groupsum/ssot-registry"
17
+ Issues = "https://github.com/groupsum/ssot-registry/issues"
18
+
19
+ [project.scripts]
20
+ ssot-tui = "ssot_tui.main:main"
21
+
22
+ [tool.setuptools]
23
+ package-dir = {"" = "src"}
24
+
25
+ [tool.setuptools.packages.find]
26
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ """ssot-tui package."""
@@ -0,0 +1,11 @@
1
+ """Entry point for the ssot-tui package."""
2
+
3
+
4
+ def main() -> int:
5
+ """Run the ssot-tui command."""
6
+ print("ssot-tui is not implemented yet.")
7
+ return 0
8
+
9
+
10
+ if __name__ == "__main__":
11
+ raise SystemExit(main())
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: ssot-tui
3
+ Version: 0.1.0
4
+ Summary: Terminal UI package for ssot-registry workflows.
5
+ Author-email: Jacob Stewart <jacob@swarmauri.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/groupsum/ssot-registry
8
+ Project-URL: Repository, https://github.com/groupsum/ssot-registry
9
+ Project-URL: Issues, https://github.com/groupsum/ssot-registry/issues
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+
13
+ # ssot-tui
14
+
15
+ `ssot-tui` is a starter package for an SSOT terminal user interface.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/ssot_tui/__init__.py
4
+ src/ssot_tui/main.py
5
+ src/ssot_tui.egg-info/PKG-INFO
6
+ src/ssot_tui.egg-info/SOURCES.txt
7
+ src/ssot_tui.egg-info/dependency_links.txt
8
+ src/ssot_tui.egg-info/entry_points.txt
9
+ src/ssot_tui.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ ssot-tui = ssot_tui.main:main
@@ -0,0 +1 @@
1
+ ssot_tui