abstractcode 0.1.0__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.
- abstractcode-0.1.0/LICENSE +22 -0
- abstractcode-0.1.0/PKG-INFO +114 -0
- abstractcode-0.1.0/README.md +80 -0
- abstractcode-0.1.0/abstractcode/__init__.py +54 -0
- abstractcode-0.1.0/abstractcode.egg-info/PKG-INFO +114 -0
- abstractcode-0.1.0/abstractcode.egg-info/SOURCES.txt +10 -0
- abstractcode-0.1.0/abstractcode.egg-info/dependency_links.txt +1 -0
- abstractcode-0.1.0/abstractcode.egg-info/entry_points.txt +2 -0
- abstractcode-0.1.0/abstractcode.egg-info/requires.txt +6 -0
- abstractcode-0.1.0/abstractcode.egg-info/top_level.txt +1 -0
- abstractcode-0.1.0/pyproject.toml +84 -0
- abstractcode-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Laurent-Philippe Albou
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: abstractcode
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A clean terminal CLI for multi-agent agentic coding
|
|
5
|
+
Author-email: Laurent-Philippe Albou <contact@abstractcore.ai>
|
|
6
|
+
Maintainer-email: Laurent-Philippe Albou <contact@abstractcore.ai>
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Homepage, https://abstractcore.ai
|
|
9
|
+
Project-URL: Documentation, https://abstractcore.ai
|
|
10
|
+
Project-URL: Repository, https://github.com/lpalbou/abstractcode
|
|
11
|
+
Project-URL: Bug Tracker, https://github.com/lpalbou/abstractcode/issues
|
|
12
|
+
Keywords: ai,llm,cli,coding,agent,multi-agent,agentic,terminal,abstractcore,abstractruntime,abstractagent
|
|
13
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
25
|
+
Requires-Python: >=3.8
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
License-File: LICENSE
|
|
28
|
+
Provides-Extra: dev
|
|
29
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
30
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
31
|
+
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
32
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
33
|
+
Dynamic: license-file
|
|
34
|
+
|
|
35
|
+
# AbstractCode
|
|
36
|
+
|
|
37
|
+
**A clean terminal CLI for multi-agent agentic coding**
|
|
38
|
+
|
|
39
|
+
[](https://opensource.org/licenses/MIT)
|
|
40
|
+
[](https://www.python.org/downloads/)
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## 🚧 Under Development
|
|
45
|
+
|
|
46
|
+
AbstractCode is currently under active development. This is a placeholder release to reserve the package name on PyPI.
|
|
47
|
+
|
|
48
|
+
## What is AbstractCode?
|
|
49
|
+
|
|
50
|
+
AbstractCode is a clean terminal CLI for multi-agent agentic coding, similar to Claude Code, Codex, and Gemini CLI. It leverages the Abstract Framework ecosystem to provide seamless AI-powered coding assistance directly in your terminal.
|
|
51
|
+
|
|
52
|
+
## The Abstract Framework
|
|
53
|
+
|
|
54
|
+
AbstractCode is built on top of the Abstract Framework, a comprehensive suite of tools for AI-powered development:
|
|
55
|
+
|
|
56
|
+
- **[AbstractCore](https://github.com/lpalbou/abstractcore)** - Unified interface for multiple LLM providers
|
|
57
|
+
- **[AbstractRuntime](https://github.com/lpalbou/abstractruntime)** - Runtime environment for AI agents
|
|
58
|
+
- **[AbstractAgent](https://github.com/lpalbou/abstractagent)** - Multi-agent orchestration and coordination
|
|
59
|
+
|
|
60
|
+
## Features (Coming Soon)
|
|
61
|
+
|
|
62
|
+
- 🤖 **Multi-Agent Coding** - Coordinate multiple AI agents for complex coding tasks
|
|
63
|
+
- 🔌 **Provider Agnostic** - Works with OpenAI, Anthropic, Ollama, and more
|
|
64
|
+
- 💻 **Terminal Native** - Clean CLI interface for seamless workflow integration
|
|
65
|
+
- 🎯 **Context Aware** - Understands your codebase and project structure
|
|
66
|
+
- 🔄 **Iterative Development** - Collaborative coding with AI assistance
|
|
67
|
+
- 🌐 **Offline Capable** - Works with local models via Ollama
|
|
68
|
+
|
|
69
|
+
## Installation
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
pip install abstractcode
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## Quick Start
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
# Coming soon!
|
|
79
|
+
abstractcode --help
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Requirements
|
|
83
|
+
|
|
84
|
+
- Python 3.8 or higher
|
|
85
|
+
- AbstractCore
|
|
86
|
+
- AbstractRuntime
|
|
87
|
+
- AbstractAgent
|
|
88
|
+
|
|
89
|
+
## Documentation
|
|
90
|
+
|
|
91
|
+
Full documentation will be available at [abstractcore.ai](https://abstractcore.ai)
|
|
92
|
+
|
|
93
|
+
## Development Status
|
|
94
|
+
|
|
95
|
+
This project is in early development. Stay tuned for updates!
|
|
96
|
+
|
|
97
|
+
## Contributing
|
|
98
|
+
|
|
99
|
+
Contributions are welcome! Please check back soon for contribution guidelines.
|
|
100
|
+
|
|
101
|
+
## Contact
|
|
102
|
+
|
|
103
|
+
**Maintainer:** Laurent-Philippe Albou
|
|
104
|
+
📧 Email: contact@abstractcore.ai
|
|
105
|
+
🌐 Website: [abstractcore.ai](https://abstractcore.ai)
|
|
106
|
+
|
|
107
|
+
## License
|
|
108
|
+
|
|
109
|
+
MIT License - see LICENSE file for details.
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
**AbstractCode** - Multi-agent agentic coding in your terminal, powered by the Abstract Framework.
|
|
114
|
+
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# AbstractCode
|
|
2
|
+
|
|
3
|
+
**A clean terminal CLI for multi-agent agentic coding**
|
|
4
|
+
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
[](https://www.python.org/downloads/)
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 🚧 Under Development
|
|
11
|
+
|
|
12
|
+
AbstractCode is currently under active development. This is a placeholder release to reserve the package name on PyPI.
|
|
13
|
+
|
|
14
|
+
## What is AbstractCode?
|
|
15
|
+
|
|
16
|
+
AbstractCode is a clean terminal CLI for multi-agent agentic coding, similar to Claude Code, Codex, and Gemini CLI. It leverages the Abstract Framework ecosystem to provide seamless AI-powered coding assistance directly in your terminal.
|
|
17
|
+
|
|
18
|
+
## The Abstract Framework
|
|
19
|
+
|
|
20
|
+
AbstractCode is built on top of the Abstract Framework, a comprehensive suite of tools for AI-powered development:
|
|
21
|
+
|
|
22
|
+
- **[AbstractCore](https://github.com/lpalbou/abstractcore)** - Unified interface for multiple LLM providers
|
|
23
|
+
- **[AbstractRuntime](https://github.com/lpalbou/abstractruntime)** - Runtime environment for AI agents
|
|
24
|
+
- **[AbstractAgent](https://github.com/lpalbou/abstractagent)** - Multi-agent orchestration and coordination
|
|
25
|
+
|
|
26
|
+
## Features (Coming Soon)
|
|
27
|
+
|
|
28
|
+
- 🤖 **Multi-Agent Coding** - Coordinate multiple AI agents for complex coding tasks
|
|
29
|
+
- 🔌 **Provider Agnostic** - Works with OpenAI, Anthropic, Ollama, and more
|
|
30
|
+
- 💻 **Terminal Native** - Clean CLI interface for seamless workflow integration
|
|
31
|
+
- 🎯 **Context Aware** - Understands your codebase and project structure
|
|
32
|
+
- 🔄 **Iterative Development** - Collaborative coding with AI assistance
|
|
33
|
+
- 🌐 **Offline Capable** - Works with local models via Ollama
|
|
34
|
+
|
|
35
|
+
## Installation
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pip install abstractcode
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Quick Start
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
# Coming soon!
|
|
45
|
+
abstractcode --help
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Requirements
|
|
49
|
+
|
|
50
|
+
- Python 3.8 or higher
|
|
51
|
+
- AbstractCore
|
|
52
|
+
- AbstractRuntime
|
|
53
|
+
- AbstractAgent
|
|
54
|
+
|
|
55
|
+
## Documentation
|
|
56
|
+
|
|
57
|
+
Full documentation will be available at [abstractcore.ai](https://abstractcore.ai)
|
|
58
|
+
|
|
59
|
+
## Development Status
|
|
60
|
+
|
|
61
|
+
This project is in early development. Stay tuned for updates!
|
|
62
|
+
|
|
63
|
+
## Contributing
|
|
64
|
+
|
|
65
|
+
Contributions are welcome! Please check back soon for contribution guidelines.
|
|
66
|
+
|
|
67
|
+
## Contact
|
|
68
|
+
|
|
69
|
+
**Maintainer:** Laurent-Philippe Albou
|
|
70
|
+
📧 Email: contact@abstractcore.ai
|
|
71
|
+
🌐 Website: [abstractcore.ai](https://abstractcore.ai)
|
|
72
|
+
|
|
73
|
+
## License
|
|
74
|
+
|
|
75
|
+
MIT License - see LICENSE file for details.
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
**AbstractCode** - Multi-agent agentic coding in your terminal, powered by the Abstract Framework.
|
|
80
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"""
|
|
2
|
+
AbstractCode - A clean terminal CLI for multi-agent agentic coding
|
|
3
|
+
|
|
4
|
+
This package provides a terminal-based interface for AI-powered coding assistance
|
|
5
|
+
using multiple coordinated agents. Built on the Abstract Framework ecosystem.
|
|
6
|
+
|
|
7
|
+
Author: Laurent-Philippe Albou
|
|
8
|
+
Email: contact@abstractcore.ai
|
|
9
|
+
Website: https://abstractcore.ai
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
__version__ = "0.1.0"
|
|
13
|
+
__author__ = "Laurent-Philippe Albou"
|
|
14
|
+
__email__ = "contact@abstractcore.ai"
|
|
15
|
+
__license__ = "MIT"
|
|
16
|
+
|
|
17
|
+
# Package metadata
|
|
18
|
+
__all__ = [
|
|
19
|
+
"__version__",
|
|
20
|
+
"__author__",
|
|
21
|
+
"__email__",
|
|
22
|
+
"__license__",
|
|
23
|
+
"main",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def main():
|
|
28
|
+
"""
|
|
29
|
+
Main entry point for the AbstractCode CLI.
|
|
30
|
+
|
|
31
|
+
This is a placeholder implementation. Full functionality coming soon.
|
|
32
|
+
"""
|
|
33
|
+
print(f"AbstractCode v{__version__}")
|
|
34
|
+
print("=" * 50)
|
|
35
|
+
print("🚧 Under Development")
|
|
36
|
+
print("=" * 50)
|
|
37
|
+
print()
|
|
38
|
+
print("AbstractCode is currently under active development.")
|
|
39
|
+
print("This is a placeholder release.")
|
|
40
|
+
print()
|
|
41
|
+
print("Stay tuned for updates!")
|
|
42
|
+
print()
|
|
43
|
+
print("Built on the Abstract Framework:")
|
|
44
|
+
print(" • AbstractCore: https://github.com/lpalbou/abstractcore")
|
|
45
|
+
print(" • AbstractRuntime: https://github.com/lpalbou/abstractruntime")
|
|
46
|
+
print(" • AbstractAgent: https://github.com/lpalbou/abstractagent")
|
|
47
|
+
print()
|
|
48
|
+
print(f"Contact: {__email__}")
|
|
49
|
+
print("Website: https://abstractcore.ai")
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
if __name__ == "__main__":
|
|
53
|
+
main()
|
|
54
|
+
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: abstractcode
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A clean terminal CLI for multi-agent agentic coding
|
|
5
|
+
Author-email: Laurent-Philippe Albou <contact@abstractcore.ai>
|
|
6
|
+
Maintainer-email: Laurent-Philippe Albou <contact@abstractcore.ai>
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Homepage, https://abstractcore.ai
|
|
9
|
+
Project-URL: Documentation, https://abstractcore.ai
|
|
10
|
+
Project-URL: Repository, https://github.com/lpalbou/abstractcode
|
|
11
|
+
Project-URL: Bug Tracker, https://github.com/lpalbou/abstractcode/issues
|
|
12
|
+
Keywords: ai,llm,cli,coding,agent,multi-agent,agentic,terminal,abstractcore,abstractruntime,abstractagent
|
|
13
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
25
|
+
Requires-Python: >=3.8
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
License-File: LICENSE
|
|
28
|
+
Provides-Extra: dev
|
|
29
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
30
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
31
|
+
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
32
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
33
|
+
Dynamic: license-file
|
|
34
|
+
|
|
35
|
+
# AbstractCode
|
|
36
|
+
|
|
37
|
+
**A clean terminal CLI for multi-agent agentic coding**
|
|
38
|
+
|
|
39
|
+
[](https://opensource.org/licenses/MIT)
|
|
40
|
+
[](https://www.python.org/downloads/)
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## 🚧 Under Development
|
|
45
|
+
|
|
46
|
+
AbstractCode is currently under active development. This is a placeholder release to reserve the package name on PyPI.
|
|
47
|
+
|
|
48
|
+
## What is AbstractCode?
|
|
49
|
+
|
|
50
|
+
AbstractCode is a clean terminal CLI for multi-agent agentic coding, similar to Claude Code, Codex, and Gemini CLI. It leverages the Abstract Framework ecosystem to provide seamless AI-powered coding assistance directly in your terminal.
|
|
51
|
+
|
|
52
|
+
## The Abstract Framework
|
|
53
|
+
|
|
54
|
+
AbstractCode is built on top of the Abstract Framework, a comprehensive suite of tools for AI-powered development:
|
|
55
|
+
|
|
56
|
+
- **[AbstractCore](https://github.com/lpalbou/abstractcore)** - Unified interface for multiple LLM providers
|
|
57
|
+
- **[AbstractRuntime](https://github.com/lpalbou/abstractruntime)** - Runtime environment for AI agents
|
|
58
|
+
- **[AbstractAgent](https://github.com/lpalbou/abstractagent)** - Multi-agent orchestration and coordination
|
|
59
|
+
|
|
60
|
+
## Features (Coming Soon)
|
|
61
|
+
|
|
62
|
+
- 🤖 **Multi-Agent Coding** - Coordinate multiple AI agents for complex coding tasks
|
|
63
|
+
- 🔌 **Provider Agnostic** - Works with OpenAI, Anthropic, Ollama, and more
|
|
64
|
+
- 💻 **Terminal Native** - Clean CLI interface for seamless workflow integration
|
|
65
|
+
- 🎯 **Context Aware** - Understands your codebase and project structure
|
|
66
|
+
- 🔄 **Iterative Development** - Collaborative coding with AI assistance
|
|
67
|
+
- 🌐 **Offline Capable** - Works with local models via Ollama
|
|
68
|
+
|
|
69
|
+
## Installation
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
pip install abstractcode
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## Quick Start
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
# Coming soon!
|
|
79
|
+
abstractcode --help
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Requirements
|
|
83
|
+
|
|
84
|
+
- Python 3.8 or higher
|
|
85
|
+
- AbstractCore
|
|
86
|
+
- AbstractRuntime
|
|
87
|
+
- AbstractAgent
|
|
88
|
+
|
|
89
|
+
## Documentation
|
|
90
|
+
|
|
91
|
+
Full documentation will be available at [abstractcore.ai](https://abstractcore.ai)
|
|
92
|
+
|
|
93
|
+
## Development Status
|
|
94
|
+
|
|
95
|
+
This project is in early development. Stay tuned for updates!
|
|
96
|
+
|
|
97
|
+
## Contributing
|
|
98
|
+
|
|
99
|
+
Contributions are welcome! Please check back soon for contribution guidelines.
|
|
100
|
+
|
|
101
|
+
## Contact
|
|
102
|
+
|
|
103
|
+
**Maintainer:** Laurent-Philippe Albou
|
|
104
|
+
📧 Email: contact@abstractcore.ai
|
|
105
|
+
🌐 Website: [abstractcore.ai](https://abstractcore.ai)
|
|
106
|
+
|
|
107
|
+
## License
|
|
108
|
+
|
|
109
|
+
MIT License - see LICENSE file for details.
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
**AbstractCode** - Multi-agent agentic coding in your terminal, powered by the Abstract Framework.
|
|
114
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
abstractcode/__init__.py
|
|
5
|
+
abstractcode.egg-info/PKG-INFO
|
|
6
|
+
abstractcode.egg-info/SOURCES.txt
|
|
7
|
+
abstractcode.egg-info/dependency_links.txt
|
|
8
|
+
abstractcode.egg-info/entry_points.txt
|
|
9
|
+
abstractcode.egg-info/requires.txt
|
|
10
|
+
abstractcode.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
abstractcode
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "abstractcode"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "A clean terminal CLI for multi-agent agentic coding"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Laurent-Philippe Albou", email = "contact@abstractcore.ai"}
|
|
14
|
+
]
|
|
15
|
+
maintainers = [
|
|
16
|
+
{name = "Laurent-Philippe Albou", email = "contact@abstractcore.ai"}
|
|
17
|
+
]
|
|
18
|
+
keywords = [
|
|
19
|
+
"ai",
|
|
20
|
+
"llm",
|
|
21
|
+
"cli",
|
|
22
|
+
"coding",
|
|
23
|
+
"agent",
|
|
24
|
+
"multi-agent",
|
|
25
|
+
"agentic",
|
|
26
|
+
"terminal",
|
|
27
|
+
"abstractcore",
|
|
28
|
+
"abstractruntime",
|
|
29
|
+
"abstractagent"
|
|
30
|
+
]
|
|
31
|
+
classifiers = [
|
|
32
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
33
|
+
"Intended Audience :: Developers",
|
|
34
|
+
"License :: OSI Approved :: MIT License",
|
|
35
|
+
"Operating System :: OS Independent",
|
|
36
|
+
"Programming Language :: Python :: 3",
|
|
37
|
+
"Programming Language :: Python :: 3.8",
|
|
38
|
+
"Programming Language :: Python :: 3.9",
|
|
39
|
+
"Programming Language :: Python :: 3.10",
|
|
40
|
+
"Programming Language :: Python :: 3.11",
|
|
41
|
+
"Programming Language :: Python :: 3.12",
|
|
42
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
43
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
dependencies = []
|
|
47
|
+
|
|
48
|
+
[project.optional-dependencies]
|
|
49
|
+
dev = [
|
|
50
|
+
"pytest>=7.0.0",
|
|
51
|
+
"pytest-cov>=4.0.0",
|
|
52
|
+
"black>=23.0.0",
|
|
53
|
+
"ruff>=0.1.0",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[project.urls]
|
|
57
|
+
Homepage = "https://abstractcore.ai"
|
|
58
|
+
Documentation = "https://abstractcore.ai"
|
|
59
|
+
Repository = "https://github.com/lpalbou/abstractcode"
|
|
60
|
+
"Bug Tracker" = "https://github.com/lpalbou/abstractcode/issues"
|
|
61
|
+
|
|
62
|
+
[project.scripts]
|
|
63
|
+
abstractcode = "abstractcode:main"
|
|
64
|
+
|
|
65
|
+
[tool.setuptools]
|
|
66
|
+
packages = ["abstractcode"]
|
|
67
|
+
|
|
68
|
+
[tool.setuptools.package-data]
|
|
69
|
+
abstractcode = ["py.typed"]
|
|
70
|
+
|
|
71
|
+
[tool.black]
|
|
72
|
+
line-length = 100
|
|
73
|
+
target-version = ['py38']
|
|
74
|
+
|
|
75
|
+
[tool.ruff]
|
|
76
|
+
line-length = 100
|
|
77
|
+
target-version = "py38"
|
|
78
|
+
|
|
79
|
+
[tool.pytest.ini_options]
|
|
80
|
+
testpaths = ["tests"]
|
|
81
|
+
python_files = ["test_*.py"]
|
|
82
|
+
python_classes = ["Test*"]
|
|
83
|
+
python_functions = ["test_*"]
|
|
84
|
+
|