forked from VRSEN/OpenSwarm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (66 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (66 loc) · 1.74 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
[project]
name = "open-swarm"
description = "An open-source multi-agent AI team built on Agency Swarm and the OpenAI Agents SDK"
version = "1.0.1-rc.4"
license = { text = "MIT" }
keywords = ["agency-swarm", "openai", "multi-agent", "open-source", "openswarm"]
requires-python = ">=3.12"
dependencies = [
"agency-swarm[fastapi,jupyter,litellm]>=1.9.8",
"questionary>=2.0.0",
"python-dotenv",
"rich",
"fastapi",
"uvicorn",
"composio==0.8.0",
"composio-openai-agents==0.8.0",
"pytz",
# Data analysis
"pandas>=2.0.0",
"numpy>=1.24.0",
"scipy>=1.10.0",
"statsmodels>=0.14.0",
"scikit-learn>=1.3.0",
# Visualisation
"matplotlib>=3.5.0",
"seaborn>=0.12.0",
"plotly>=5.14.0",
# Excel / CSV
"openpyxl>=3.1.0",
"xlrd>=2.0.0",
# Jupyter / IPython
"jupyter>=1.0.0",
"ipython>=8.0.0",
"nbformat>=5.0.0",
# Image processing
"pillow>=9.0.0",
"opencv-python-headless",
# PowerPoint / document processing
"python-pptx>=1.0.0",
"defusedxml>=0.7.0",
"pdf2image>=1.16.0",
"markitdown[pptx]>=0.1.0",
"six>=1.16.0",
"python-docx",
"tinycss2",
"beautifulsoup4",
"cairosvg",
"weasyprint",
"html2text",
"playwright",
# AI / media generation
"google-genai",
"fal-client",
"moviepy<2",
"imageio-ffmpeg",
"httpx",
]
[project.scripts]
openswarm = "run_utils:main"
[tool.setuptools]
py-modules = ["agency", "swarm", "helpers", "config", "onboard", "server"]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["agentswarm-cli*", "venv*", ".venv*", ".agency_swarm*", "node_modules*", "*.node_modules*", "activity*", "mnt*", "pptx*", "slides"]
[tool.setuptools.package-data]
"*" = ["*.md", "*.json", "agency-*"]