ssot-cli 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_cli-0.1.0/PKG-INFO +16 -0
- ssot_cli-0.1.0/README.md +3 -0
- ssot_cli-0.1.0/pyproject.toml +29 -0
- ssot_cli-0.1.0/setup.cfg +4 -0
- ssot_cli-0.1.0/src/ssot_cli/__init__.py +1 -0
- ssot_cli-0.1.0/src/ssot_cli.egg-info/PKG-INFO +16 -0
- ssot_cli-0.1.0/src/ssot_cli.egg-info/SOURCES.txt +9 -0
- ssot_cli-0.1.0/src/ssot_cli.egg-info/dependency_links.txt +1 -0
- ssot_cli-0.1.0/src/ssot_cli.egg-info/entry_points.txt +2 -0
- ssot_cli-0.1.0/src/ssot_cli.egg-info/requires.txt +1 -0
- ssot_cli-0.1.0/src/ssot_cli.egg-info/top_level.txt +1 -0
ssot_cli-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ssot-cli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: CLI wrapper package for ssot-registry.
|
|
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
|
+
Requires-Dist: ssot-registry>=0.2.3
|
|
13
|
+
|
|
14
|
+
# ssot-cli
|
|
15
|
+
|
|
16
|
+
`ssot-cli` provides a convenience CLI entry point backed by `ssot-registry`.
|
ssot_cli-0.1.0/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ssot-cli"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "CLI wrapper package for ssot-registry."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
13
|
+
dependencies = [
|
|
14
|
+
"ssot-registry>=0.2.3",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://github.com/groupsum/ssot-registry"
|
|
19
|
+
Repository = "https://github.com/groupsum/ssot-registry"
|
|
20
|
+
Issues = "https://github.com/groupsum/ssot-registry/issues"
|
|
21
|
+
|
|
22
|
+
[project.scripts]
|
|
23
|
+
ssot-cli = "ssot_registry.cli.main:main"
|
|
24
|
+
|
|
25
|
+
[tool.setuptools]
|
|
26
|
+
package-dir = {"" = "src"}
|
|
27
|
+
|
|
28
|
+
[tool.setuptools.packages.find]
|
|
29
|
+
where = ["src"]
|
ssot_cli-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""ssot-cli package."""
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ssot-cli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: CLI wrapper package for ssot-registry.
|
|
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
|
+
Requires-Dist: ssot-registry>=0.2.3
|
|
13
|
+
|
|
14
|
+
# ssot-cli
|
|
15
|
+
|
|
16
|
+
`ssot-cli` provides a convenience CLI entry point backed by `ssot-registry`.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/ssot_cli/__init__.py
|
|
4
|
+
src/ssot_cli.egg-info/PKG-INFO
|
|
5
|
+
src/ssot_cli.egg-info/SOURCES.txt
|
|
6
|
+
src/ssot_cli.egg-info/dependency_links.txt
|
|
7
|
+
src/ssot_cli.egg-info/entry_points.txt
|
|
8
|
+
src/ssot_cli.egg-info/requires.txt
|
|
9
|
+
src/ssot_cli.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ssot-registry>=0.2.3
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ssot_cli
|