wade-cli 0.0.1__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,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: wade-cli
3
+ Version: 0.0.1
4
+ Summary: WADE — Workflow for AI-Driven Engineering
5
+ Project-URL: Homepage, https://github.com/ivanviragine/wade
6
+ Project-URL: Repository, https://github.com/ivanviragine/wade
7
+ Author: Ivan Viragine
8
+ License-Expression: MIT
9
+ Keywords: ai,cli,git,github,workflow
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Topic :: Software Development :: Version Control :: Git
18
+ Requires-Python: >=3.11
19
+ Description-Content-Type: text/markdown
20
+
21
+ # wade-cli
22
+
23
+ This package reserves the `wade-cli` name on PyPI for the [WADE](https://github.com/ivanviragine/wade) project.
24
+
25
+ **WADE** (Workflow for AI-Driven Engineering) is a Python CLI toolkit for AI-agent-driven git workflow management.
26
+
27
+ For the actual tool, visit: https://github.com/ivanviragine/wade
@@ -0,0 +1,7 @@
1
+ # wade-cli
2
+
3
+ This package reserves the `wade-cli` name on PyPI for the [WADE](https://github.com/ivanviragine/wade) project.
4
+
5
+ **WADE** (Workflow for AI-Driven Engineering) is a Python CLI toolkit for AI-agent-driven git workflow management.
6
+
7
+ For the actual tool, visit: https://github.com/ivanviragine/wade
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "wade-cli"
7
+ version = "0.0.1"
8
+ description = "WADE — Workflow for AI-Driven Engineering"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.11"
12
+ authors = [
13
+ { name = "Ivan Viragine" },
14
+ ]
15
+ keywords = ["git", "workflow", "ai", "cli", "github"]
16
+ classifiers = [
17
+ "Development Status :: 1 - Planning",
18
+ "Environment :: Console",
19
+ "Intended Audience :: Developers",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: 3.13",
24
+ "Topic :: Software Development :: Version Control :: Git",
25
+ ]
26
+
27
+ [project.urls]
28
+ Homepage = "https://github.com/ivanviragine/wade"
29
+ Repository = "https://github.com/ivanviragine/wade"
30
+
31
+ [tool.hatch.build.targets.wheel]
32
+ packages = ["src/wade_cli"]
@@ -0,0 +1,3 @@
1
+ """WADE — Workflow for AI-Driven Engineering."""
2
+
3
+ __version__ = "0.0.1"