File size: 723 Bytes
fc190df
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "korean_cpc_agents"
version = "0.1.0"
description = "korean-cpc-agents using crewAI"
authors = [{ name = "Your Name", email = "you@example.com" }]
requires-python = ">=3.10,<3.14"
dependencies = [
    "crewai>=0.159.0,<1.0.0",
    "fastapi>=0.100.0",
    "uvicorn[standard]>=0.20.0",
    "openai>=1.0.0"
]

[project.scripts]
korean_cpc_agents = "korean_cpc_agents.main:run"
run_crew = "korean_cpc_agents.main:run"
train = "korean_cpc_agents.main:train"
replay = "korean_cpc_agents.main:replay"
test = "korean_cpc_agents.main:test"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["src/korean_cpc_agents"]

[tool.crewai]
type = "crew"