a2c-core 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_core-0.2.1/PKG-INFO +42 -0
- a2c_core-0.2.1/README.md +18 -0
- a2c_core-0.2.1/pyproject.toml +43 -0
- a2c_core-0.2.1/setup.cfg +4 -0
a2c_core-0.2.1/PKG-INFO
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: a2c-core
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: A2C engine — schemas, validation, and workflow orchestration
|
|
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/-/tree/develop/docs/architecture
|
|
10
|
+
Keywords: a2c,architecture,workflow,validation
|
|
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: pydantic>=2.0
|
|
22
|
+
Requires-Dist: pyyaml>=6.0
|
|
23
|
+
Requires-Dist: httpx>=0.27
|
|
24
|
+
|
|
25
|
+
# a2c-core
|
|
26
|
+
|
|
27
|
+
A2C engine — schemas, validation, and workflow orchestration for Architecture-to-Code
|
|
28
|
+
governed repositories.
|
|
29
|
+
|
|
30
|
+
Part of the [a2c-workflow](https://gitlab.com/libesys/ai-workflows/a2c-workflow) product.
|
|
31
|
+
Lockstep version with `a2c-cli` and `a2c-tui`.
|
|
32
|
+
|
|
33
|
+
## Install
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pip install a2c-core
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Documentation
|
|
40
|
+
|
|
41
|
+
- [Architecture](https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/tree/develop/docs/architecture)
|
|
42
|
+
- [Package publishing](https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/blob/develop/docs/package-publishing.md)
|
a2c_core-0.2.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# a2c-core
|
|
2
|
+
|
|
3
|
+
A2C engine — schemas, validation, and workflow orchestration for Architecture-to-Code
|
|
4
|
+
governed repositories.
|
|
5
|
+
|
|
6
|
+
Part of the [a2c-workflow](https://gitlab.com/libesys/ai-workflows/a2c-workflow) product.
|
|
7
|
+
Lockstep version with `a2c-cli` and `a2c-tui`.
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install a2c-core
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Documentation
|
|
16
|
+
|
|
17
|
+
- [Architecture](https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/tree/develop/docs/architecture)
|
|
18
|
+
- [Package publishing](https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/blob/develop/docs/package-publishing.md)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "a2c-core"
|
|
7
|
+
version = "0.2.1"
|
|
8
|
+
description = "A2C engine — schemas, validation, and workflow orchestration"
|
|
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", "workflow", "validation"]
|
|
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
|
+
"pydantic>=2.0",
|
|
26
|
+
"pyyaml>=6.0",
|
|
27
|
+
"httpx>=0.27",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[project.urls]
|
|
31
|
+
Homepage = "https://gitlab.com/libesys/ai-workflows/a2c-workflow"
|
|
32
|
+
Repository = "https://gitlab.com/libesys/ai-workflows/a2c-workflow.git"
|
|
33
|
+
Documentation = "https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/tree/develop/docs/architecture"
|
|
34
|
+
|
|
35
|
+
[tool.setuptools]
|
|
36
|
+
package-dir = { "" = "../../src" }
|
|
37
|
+
|
|
38
|
+
[tool.setuptools.packages.find]
|
|
39
|
+
where = ["../../src"]
|
|
40
|
+
include = ["a2c_core*"]
|
|
41
|
+
|
|
42
|
+
[tool.setuptools.package-data]
|
|
43
|
+
"a2c_core.workflows" = ["prompts/*.md"]
|
a2c_core-0.2.1/setup.cfg
ADDED