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.
- ssot_tui-0.1.0/PKG-INFO +15 -0
- ssot_tui-0.1.0/README.md +3 -0
- ssot_tui-0.1.0/pyproject.toml +26 -0
- ssot_tui-0.1.0/setup.cfg +4 -0
- ssot_tui-0.1.0/src/ssot_tui/__init__.py +1 -0
- ssot_tui-0.1.0/src/ssot_tui/main.py +11 -0
- ssot_tui-0.1.0/src/ssot_tui.egg-info/PKG-INFO +15 -0
- ssot_tui-0.1.0/src/ssot_tui.egg-info/SOURCES.txt +9 -0
- ssot_tui-0.1.0/src/ssot_tui.egg-info/dependency_links.txt +1 -0
- ssot_tui-0.1.0/src/ssot_tui.egg-info/entry_points.txt +2 -0
- ssot_tui-0.1.0/src/ssot_tui.egg-info/top_level.txt +1 -0
ssot_tui-0.1.0/PKG-INFO
ADDED
|
@@ -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.
|
ssot_tui-0.1.0/README.md
ADDED
|
@@ -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"]
|
ssot_tui-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""ssot-tui package."""
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ssot_tui
|