a2c-tui 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_tui-0.2.1/PKG-INFO +42 -0
- a2c_tui-0.2.1/README.md +19 -0
- a2c_tui-0.2.1/pyproject.toml +42 -0
- a2c_tui-0.2.1/setup.cfg +4 -0
a2c_tui-0.2.1/PKG-INFO
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: a2c-tui
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: A2C Textual terminal UI 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/-/tree/develop/docs/architecture
|
|
10
|
+
Keywords: a2c,architecture,tui,textual,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: textual>=0.47
|
|
23
|
+
|
|
24
|
+
# a2c-tui
|
|
25
|
+
|
|
26
|
+
Textual terminal UI for A2C — interactive workflows over `a2c-core`.
|
|
27
|
+
|
|
28
|
+
Part of the [a2c-workflow](https://gitlab.com/libesys/ai-workflows/a2c-workflow) product.
|
|
29
|
+
Lockstep version with `a2c-core` and `a2c-cli`.
|
|
30
|
+
|
|
31
|
+
## Install
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install a2c-tui
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Console command: `a2c-tui`
|
|
38
|
+
|
|
39
|
+
## Documentation
|
|
40
|
+
|
|
41
|
+
- [Product development](https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/blob/develop/docs/product-development.md)
|
|
42
|
+
- [Package publishing](https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/blob/develop/docs/package-publishing.md)
|
a2c_tui-0.2.1/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# a2c-tui
|
|
2
|
+
|
|
3
|
+
Textual terminal UI for A2C — interactive workflows over `a2c-core`.
|
|
4
|
+
|
|
5
|
+
Part of the [a2c-workflow](https://gitlab.com/libesys/ai-workflows/a2c-workflow) product.
|
|
6
|
+
Lockstep version with `a2c-core` and `a2c-cli`.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install a2c-tui
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Console command: `a2c-tui`
|
|
15
|
+
|
|
16
|
+
## Documentation
|
|
17
|
+
|
|
18
|
+
- [Product development](https://gitlab.com/libesys/ai-workflows/a2c-workflow/-/blob/develop/docs/product-development.md)
|
|
19
|
+
- [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-tui"
|
|
7
|
+
version = "0.2.1"
|
|
8
|
+
description = "A2C Textual terminal UI 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", "tui", "textual", "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
|
+
"textual>=0.47",
|
|
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/-/tree/develop/docs/architecture"
|
|
33
|
+
|
|
34
|
+
[project.scripts]
|
|
35
|
+
a2c-tui = "a2c_tui.app:main"
|
|
36
|
+
|
|
37
|
+
[tool.setuptools]
|
|
38
|
+
package-dir = { "" = "../../src" }
|
|
39
|
+
|
|
40
|
+
[tool.setuptools.packages.find]
|
|
41
|
+
where = ["../../src"]
|
|
42
|
+
include = ["a2c_tui*"]
|
a2c_tui-0.2.1/setup.cfg
ADDED