Spaces:
Sleeping
Sleeping
File size: 651 Bytes
f00396e | 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 | [project]
name = "latest_froschgruppe"
version = "0.1.0"
description = "latest-froschgruppe using crewAI"
authors = [{ name = "Your Name", email = "you@example.com" }]
requires-python = ">=3.10,<3.14"
dependencies = [
"crewai[tools]==1.8.0"
]
[project.scripts]
latest_froschgruppe = "latest_froschgruppe.main:run"
run_crew = "latest_froschgruppe.main:run"
train = "latest_froschgruppe.main:train"
replay = "latest_froschgruppe.main:replay"
test = "latest_froschgruppe.main:test"
run_with_trigger = "latest_froschgruppe.main:run_with_trigger"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.crewai]
type = "crew"
|