forked from VRSEN/agency-swarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (31 loc) · 962 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "agency-swarm"
dynamic = ["version"]
description = "An open source agent orchestration framework built on top of the latest OpenAI Assistants API."
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"openai==1.41.0",
"docstring_parser==0.16",
"pydantic==2.8.2",
"datamodel-code-generator==0.25.8",
"deepdiff==6.7.1",
"termcolor==2.4.0",
"python-dotenv==1.0.1",
"rich==13.7.1",
"jsonref==1.1.0"
]
requires-python = ">=3.7"
urls = { homepage = "https://github.com/VRSEN/agency-swarm" }
[project.scripts]
agency-swarm = "agency_swarm.cli:main"
[tool.setuptools_scm]