defectdojo-api-generated-cli 1.0.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,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: defectdojo-api-generated-cli
3
+ Version: 1.0.0
4
+ Summary: CLI wrapper for defectdojo-api-generated
5
+ Project-URL: Homepage, https://github.com/fopina/defectdojo-api-generated
6
+ Requires-Python: <4,>=3.9
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: classyclick==1.0.0
9
+ Requires-Dist: defectdojo-api-generated==2.56.4.post1
10
+ Requires-Dist: jmespath>=1.0.1
11
+
12
+ # defectdojo-api-generated-cli
13
+
14
+ Thin CLI wrapper distribution for [`defectdojo-api-generated`](https://pypi.org/project/defectdojo-api-generated/).
15
+
16
+ This package owns the `dojo` console entrypoint and pulls in the optional CLI dependencies.
@@ -0,0 +1,5 @@
1
+ # defectdojo-api-generated-cli
2
+
3
+ Thin CLI wrapper distribution for [`defectdojo-api-generated`](https://pypi.org/project/defectdojo-api-generated/).
4
+
5
+ This package owns the `dojo` console entrypoint and pulls in the optional CLI dependencies.
@@ -0,0 +1,29 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69.5.0,<80.0.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "defectdojo-api-generated-cli"
7
+ version = "1.0.0"
8
+ description = "CLI wrapper for defectdojo-api-generated"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9,<4"
11
+ dependencies = [
12
+ "classyclick==1.0.0",
13
+ "defectdojo-api-generated==2.56.4.post1",
14
+ "jmespath>=1.0.1",
15
+ ]
16
+
17
+ [project.scripts]
18
+ dojo = "defectdojo_api_generated_cli.__main__:main"
19
+ defectdojo-api-generated = "defectdojo_api_generated_cli.__main__:main"
20
+
21
+ [project.urls]
22
+ Homepage = "https://github.com/fopina/defectdojo-api-generated"
23
+
24
+ [tool.uv.sources]
25
+ defectdojo-api-generated = { path = "../.." }
26
+
27
+ [tool.setuptools.packages.find]
28
+ where = ["src"]
29
+ include = ["defectdojo_api_generated_cli"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ """Thin wrapper distribution for the DefectDojo CLI."""
2
+
3
+ __version__ = '2.56.4.post1'
@@ -0,0 +1,6 @@
1
+ """Entrypoint owned by the separate CLI distribution."""
2
+
3
+ from defectdojo_api_generated.cli.__main__ import main
4
+
5
+ if __name__ == '__main__':
6
+ main()
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: defectdojo-api-generated-cli
3
+ Version: 1.0.0
4
+ Summary: CLI wrapper for defectdojo-api-generated
5
+ Project-URL: Homepage, https://github.com/fopina/defectdojo-api-generated
6
+ Requires-Python: <4,>=3.9
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: classyclick==1.0.0
9
+ Requires-Dist: defectdojo-api-generated==2.56.4.post1
10
+ Requires-Dist: jmespath>=1.0.1
11
+
12
+ # defectdojo-api-generated-cli
13
+
14
+ Thin CLI wrapper distribution for [`defectdojo-api-generated`](https://pypi.org/project/defectdojo-api-generated/).
15
+
16
+ This package owns the `dojo` console entrypoint and pulls in the optional CLI dependencies.
@@ -0,0 +1,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/defectdojo_api_generated_cli/__init__.py
4
+ src/defectdojo_api_generated_cli/__main__.py
5
+ src/defectdojo_api_generated_cli.egg-info/PKG-INFO
6
+ src/defectdojo_api_generated_cli.egg-info/SOURCES.txt
7
+ src/defectdojo_api_generated_cli.egg-info/dependency_links.txt
8
+ src/defectdojo_api_generated_cli.egg-info/entry_points.txt
9
+ src/defectdojo_api_generated_cli.egg-info/requires.txt
10
+ src/defectdojo_api_generated_cli.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ defectdojo-api-generated = defectdojo_api_generated_cli.__main__:main
3
+ dojo = defectdojo_api_generated_cli.__main__:main
@@ -0,0 +1,3 @@
1
+ classyclick==1.0.0
2
+ defectdojo-api-generated==2.56.4.post1
3
+ jmespath>=1.0.1