21 lines
480 B
TOML
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"
|