forked from VRSEN/agency-swarm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
73 lines (66 loc) · 1.71 KB
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "agency-swarm"
dynamic = ["version"]
authors = [{ name = "VRSEN", email = "me@vrsen.ai" }]
description = "An open source agent orchestration framework built on top of the latest OpenAI Assistants API."
readme = "README.md"
license-files = ["LICENSE"]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"datamodel-code-generator~=0.30.1",
"deepdiff==8.5.0",
"docstring_parser~=0.16",
"jsonref~=1.1.0",
"openai>=1.66.0,<2.0.0",
"pydantic>=2.8.2,<2.12.0",
"python-dotenv~=1.1.0",
"rich>=13.9.4,<14.0.0",
"termcolor>=2.3.0,<3.0.0",
"mcp>=1.6.0,<2.0.0",
"packaging<25.0",
"click==8.1.8"
]
requires-python = ">=3.10"
urls = { homepage = "https://github.com/VRSEN/agency-swarm" }
[project.optional-dependencies]
dev = [
"pip-tools",
"gradio",
"langchain==0.3.13",
"langchain-community==0.3.13",
"mcp-server-git",
"pytest",
"pytest-asyncio",
"ruff>=0.11.0"
]
fastapi = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"anyio>=4.9.0"
]
[project.scripts]
agency-swarm = "agency_swarm.cli:main"
[tool.setuptools_scm]
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"
[tool.setuptools.packages.find]
where = ["."] # Specifies to look in the current directory
exclude = [
"tests",
"tests.*",
"agency_swarm.agency.genesis",
"agency_swarm.agency.genesis.*"
]
[tool.ruff]
target-version = "py310"
line-length = 120
# Enable linting and formatting
lint.select = ["E", "F", "I"]
format.quote-style = "double"