-
-
Notifications
You must be signed in to change notification settings - Fork 221
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.39 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
46
47
48
49
50
51
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "atomic-agents"
version = "1.0.20"
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"
sphinx = ">=7.2.6,<8.0.0"
sphinx-rtd-theme = ">=2.0.0,<3.0.0"
myst-parser = ">=2.0.0,<3.0.0"
sphinx-copybutton = ">=0.5.2,<1.0.0"
sphinx-design = ">=0.5.0,<1.0.0"
sphinx-autobuild = ">=2024.2.4,<2025.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