26 lines
No EOL
678 B
TOML
26 lines
No EOL
678 B
TOML
[project]
|
|
name = "latest_ai_development"
|
|
version = "0.1.0"
|
|
description = "latest-ai-development using crewAI"
|
|
authors = [{ name = "Your Name", email = "you@example.com" }]
|
|
requires-python = ">=3.10,<3.13"
|
|
dependencies = [
|
|
"crewai[tools]>=0.102.0,<1.0.0",
|
|
"cognee>=0.1.34",
|
|
"s3fs>=2025.3.2",
|
|
"neo4j>=5.28.1"
|
|
]
|
|
|
|
[project.scripts]
|
|
latest_ai_development = "latest_ai_development.main:run"
|
|
run_crew = "latest_ai_development.main:run"
|
|
train = "latest_ai_development.main:train"
|
|
replay = "latest_ai_development.main:replay"
|
|
test = "latest_ai_development.main:test"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.crewai]
|
|
type = "crew" |