Files
DBAdmin/inbox/Python/ai/agentone/pyproject.toml
T
2026-05-18 06:40:19 +00:00

21 lines
480 B
TOML

[project]
name = "agentone"
version = "0.1.0"
description = "agentone using crewAI"
authors = [{ name = "Your Name", email = "you@example.com" }]
requires-python = ">=3.10,<=3.13"
dependencies = [
"crewai[tools]>=0.80.0,<1.0.0"
]
[project.scripts]
agentone = "agentone.main:run"
run_crew = "agentone.main:run"
train = "agentone.main:train"
replay = "agentone.main:replay"
test = "agentone.main:test"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"