forked from pingwu/maca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 824 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) · 824 Bytes
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
[project]
name = "content-generator"
version = "1.0.0"
description = "Multi-agent content generation using CrewAI and FastAPI"
authors = [{ name = "Ping Wu", email = "ping@example.com" }]
requires-python = ">=3.10,<3.13"
dependencies = [
"crewai[tools]>=0.177.0",
"fastapi>=0.104.1",
"uvicorn[standard]>=0.24.0",
"websockets>=12.0",
"python-dotenv>=1.0.0",
"pydantic>=2.5.0",
"requests>=2.31.0"
]
[project.scripts]
content_generator = "my_mas.main:run"
run_crew = "my_mas.main:run"
web_api = "my_mas.web_api:app"
train = "my_mas.main:train"
replay = "my_mas.main:replay"
test = "my_mas.main:test"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/my_mas"]
[tool.crewai]
type = "crew"