23 lines
612 B
TOML
23 lines
612 B
TOML
|
|
[project]
|
||
|
|
name = "repo_software_builder_agent"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "repo_software_builder_agent using crewAI"
|
||
|
|
authors = [{ name = "Your Name", email = "you@example.com" }]
|
||
|
|
requires-python = ">=3.10,<3.14"
|
||
|
|
dependencies = [
|
||
|
|
"crewai[tools]==1.14.2"
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
kickoff = "repo_software_builder_agent.main:kickoff"
|
||
|
|
run_crew = "repo_software_builder_agent.main:kickoff"
|
||
|
|
plot = "repo_software_builder_agent.main:plot"
|
||
|
|
run_with_trigger = "repo_software_builder_agent.main:run_with_trigger"
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[tool.crewai]
|
||
|
|
type = "flow"
|