-
Notifications
You must be signed in to change notification settings - Fork 68
/
pyproject.toml
83 lines (72 loc) · 1.46 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentstack"
version = "0.2.2.1"
description = "The fastest way to build robust AI agents"
authors = [
{ name="Braelyn Boynton", 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",
]
[project.optional-dependencies]
dev = [
"mypy>=1.13.0",
"pre-commit>=4.0.1",
"ruff>=0.8.2",
]
test = [
"tox",
]
crewai = [
"crewai==0.83.0",
"crewai-tools==0.14.0",
]
[tool.setuptools.package-data]
agentstack = ["templates/**/*"]
[project.scripts]
agentstack = "agentstack.main:main"
[tool.ruff]
exclude = [
".git",
".env",
".venv",
"venv",
"env",
"__pycache__",
"build",
"dist",
"*.egg-info",
"agentstack/templates/",
"examples",
"__init__.py"
]
line-length = 110
[tool.ruff.format]
quote-style = "preserve"
[tool.mypy]
exclude = [
"templates/.*" # cookiecutter paths are not compatible
]
allow_untyped_defs = true
disable_error_code = ["var-annotated", "import-untyped"]
ignore_missing_imports = true