a2c-cli 0.2.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.
a2c_cli-0.2.1/PKG-INFO ADDED
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: a2c-cli
3
+ Version: 0.2.1
4
+ Summary: A2C command-line interface over a2c-core
5
+ Author-email: Michel Gillet <michel.gillet@libesys.org>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://gitlab.com/libesys/ai-workflows/a2c-workflow
8
+ Project-URL: Repository, https://gitlab.com/libesys/ai-workflows/a2c-workflow.git
9
+ Project-URL: Documentation, https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/blob/develop/docs/cli.md
10
+ Keywords: a2c,architecture,cli,workflow
11
+ Classifier: Development Status :: 2 - Pre-Alpha
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Software Development :: Quality Assurance
19
+ Requires-Python: >=3.11
20
+ Description-Content-Type: text/markdown
21
+ Requires-Dist: a2c-core==0.2.1
22
+ Requires-Dist: typer>=0.12
23
+
24
+ # a2c-cli
25
+
26
+ Command-line interface for A2C — inspection, validation, and review-first planning over
27
+ `a2c-core`.
28
+
29
+ Part of the [a2c-workflow](https://gitlab.com/libesys/ai-workflows/a2c-workflow) product.
30
+ Lockstep version with `a2c-core` and `a2c-tui`.
31
+
32
+ ## Install
33
+
34
+ ```bash
35
+ pip install a2c-cli
36
+ ```
37
+
38
+ Console command: `a2c`
39
+
40
+ ## Documentation
41
+
42
+ - [CLI reference](https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/blob/develop/docs/cli.md)
43
+ - [Package publishing](https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/blob/develop/docs/package-publishing.md)
@@ -0,0 +1,20 @@
1
+ # a2c-cli
2
+
3
+ Command-line interface for A2C — inspection, validation, and review-first planning over
4
+ `a2c-core`.
5
+
6
+ Part of the [a2c-workflow](https://gitlab.com/libesys/ai-workflows/a2c-workflow) product.
7
+ Lockstep version with `a2c-core` and `a2c-tui`.
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ pip install a2c-cli
13
+ ```
14
+
15
+ Console command: `a2c`
16
+
17
+ ## Documentation
18
+
19
+ - [CLI reference](https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/blob/develop/docs/cli.md)
20
+ - [Package publishing](https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/blob/develop/docs/package-publishing.md)
@@ -0,0 +1,42 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "a2c-cli"
7
+ version = "0.2.1"
8
+ description = "A2C command-line interface over a2c-core"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "MIT"
12
+ authors = [{ name = "Michel Gillet", email = "michel.gillet@libesys.org" }]
13
+ keywords = ["a2c", "architecture", "cli", "workflow"]
14
+ classifiers = [
15
+ "Development Status :: 2 - Pre-Alpha",
16
+ "Environment :: Console",
17
+ "Intended Audience :: Developers",
18
+ "Operating System :: OS Independent",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Topic :: Software Development :: Quality Assurance",
23
+ ]
24
+ dependencies = [
25
+ "a2c-core==0.2.1",
26
+ "typer>=0.12",
27
+ ]
28
+
29
+ [project.urls]
30
+ Homepage = "https://gitlab.com/libesys/ai-workflows/a2c-workflow"
31
+ Repository = "https://gitlab.com/libesys/ai-workflows/a2c-workflow.git"
32
+ Documentation = "https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/blob/develop/docs/cli.md"
33
+
34
+ [project.scripts]
35
+ a2c = "a2c_cli.main:app"
36
+
37
+ [tool.setuptools]
38
+ package-dir = { "" = "../../src" }
39
+
40
+ [tool.setuptools.packages.find]
41
+ where = ["../../src"]
42
+ include = ["a2c_cli*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+