-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathpyproject.toml
96 lines (86 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentstack"
version = "0.3.5"
description = "The fastest way to build robust AI agents"
authors = [
{ name="Braelyn Boynton", email="[email protected]" },
{ name="Travis Dent", email=" [email protected]" }
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"agentops>=0.3.18",
"typer>=0.12.5",
"inquirer>=3.4.0",
"art>=6.3",
"toml>=0.10.2",
"ruamel.yaml.base>=0.3.2",
"cookiecutter==2.6.0",
"psutil==5.9.8",
"astor==0.8.1",
"asttokens",
"pydantic>=2.10",
"packaging>=23.2",
"requests>=2.32",
"appdirs>=1.4.4",
"python-dotenv>=1.0.1",
"uv>=0.5.6",
"tomli>=2.2.1",
"gitpython>=3.1.44",
]
[project.optional-dependencies]
dev = [
"mypy>=1.13.0",
"pre-commit>=4.0.1",
"ruff>=0.8.2",
]
test = [
"tox",
]
crewai = [
"crewai==0.100.0",
"crewai-tools==0.33.0",
"shapely==2.0.6" # crewai-tools needs this, but 2.0.7 is broken
]
langgraph = [
"langgraph>=0.2.61",
"langchain>=0.3.14",
]
openai_swarm = [
"agentstack-openai-swarm>=0.0.1"
]
llamaindex = [
"llama-index-core>=0.12.16"
]
[tool.setuptools.package-data]
agentstack = ["frameworks/templates/**/*"]
[project.scripts]
agentstack = "agentstack.main:main"
[tool.ruff]
exclude = [
".git",
".env",
".venv",
"venv",
"env",
"__pycache__",
"build",
"dist",
"*.egg-info",
"agentstack/frameworks/templates/",
"examples"
]
line-length = 110
[tool.ruff.format]
quote-style = "preserve"
[tool.mypy]
exclude = [
"frameworks/templates/.*" # cookiecutter paths are not compatible
]
allow_untyped_defs = true
disable_error_code = ["var-annotated", "import-untyped"]
ignore_missing_imports = true