-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.19 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "atomic-agents"
version = "1.0.17"
description = "A versatile framework for creating and managing intelligent agents."
authors = ["Kenny Vaneetvelde <[email protected]>"]
readme = "README.md"
license = "LICENSE"
packages = [
{ include = "atomic_agents", from = "atomic-agents" },
{ include = "atomic_assembler", from = "atomic-assembler" }
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
instructor = ">=1.3.4,<2.0.0"
pydantic = ">=2.8.0,<3.0.0"
rich = ">=13.7.1,<14.0.0"
gitpython = ">=3.1.43,<4.0.0"
pyfiglet = ">=1.0.2,<2.0.0"
textual = ">=0.82.0,<1.0.0"
pyyaml = ">=6.0.2,<7.0.0"
requests = ">=2.32.3,<3.0.0"
[tool.poetry.group.dev.dependencies]
black = ">=24.8.0,<25.0.0"
flake8 = ">=7.1.1,<8.0.0"
pdoc3 = ">=0.11.1,<1.0.0"
pytest = ">=8.3.3,<9.0.0"
pytest-cov = ">=5.0.0,<6.0.0"
pytest-asyncio = ">=0.24.0,<1.0.0"
openai = ">=1.35.12,<2.0.0"
[tool.poetry.scripts]
atomic = "atomic_assembler.main:main"
[tool.poetry.urls]
Homepage = "https://github.com/BrainBlend-AI/atomic-agents"
Repository = "https://github.com/BrainBlend-AI/atomic-agents"
[tool.black]
line-length = 127