a2c-cli 0.2.1__py3-none-any.whl

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,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,17 @@
1
+ a2c_cli/__init__.py,sha256=Rj1SCx6WMpo9FvxYJSB8us6t19RwRo6pyQd9OsAMJDQ,63
2
+ a2c_cli/context.py,sha256=hfxhkFrTgMFObkY6Z-lkXk4Qhi-c1UBODIb5dmeSAS4,1989
3
+ a2c_cli/exit_codes.py,sha256=kCfQh7b9qQNJjm_MYzqArCucHuhLHY1nGzdgm045eWM,196
4
+ a2c_cli/main.py,sha256=C2v0ivUScC1Jhaoe43S8LVzBf6IVJe77H90WsqWVbHo,9658
5
+ a2c_cli/output.py,sha256=z8sttdZCE9KSPtwph17uCHd_nH_8hQlSFn3SvzSALxk,12217
6
+ a2c_cli/commands/__init__.py,sha256=_hNwtrHecefsF40P0z7MPrYCtPnGCK-kYNdgEQEK5LU,42
7
+ a2c_cli/commands/apply.py,sha256=TRUbeoG6qz0t2eRdkmaYalvFxFX2c8CeH2_rnbLRyFo,4116
8
+ a2c_cli/commands/doctor.py,sha256=f4MWqVtQ8UCQTKwu9nWf8m8_DKJVGDwvY8cw010xOFA,655
9
+ a2c_cli/commands/list_cmd.py,sha256=dnFJy1DnolZAjLNdadXCtvNolm6Zbv8y7YgjC6eGU6A,744
10
+ a2c_cli/commands/plan.py,sha256=PYVY9tGZPbwGs5b3DUSYuh86o5rUjtVoP8dqzp3s55Y,10269
11
+ a2c_cli/commands/show.py,sha256=0B4XDXGB1ixF_mvKy5EIOcbgW93IUjbeNNATIUx9PQ0,3208
12
+ a2c_cli/commands/validate.py,sha256=6pRGDg_c4GdjF7yt5BI7hDBUeVvD6lW0wvJTQCP9Klo,602
13
+ a2c_cli-0.2.1.dist-info/METADATA,sha256=ZgxX9aLTHV_ndZMKv-2qmYgb1KfNhKCSXBMroRmObzE,1555
14
+ a2c_cli-0.2.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
15
+ a2c_cli-0.2.1.dist-info/entry_points.txt,sha256=Q_L-keSh1C277MNvp1cUoev1Hxcn4P6pd3beYybnYDk,41
16
+ a2c_cli-0.2.1.dist-info/top_level.txt,sha256=wS-OgeJRknrMv4xO2U0ucqci35O9QYEANRmLLogixZ0,8
17
+ a2c_cli-0.2.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ a2c = a2c_cli.main:app
@@ -0,0 +1 @@
1
+ a2c_cli