mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 23:58:34 +00:00
21 lines
517 B
TOML
21 lines
517 B
TOML
[tool.poetry]
|
|
name = "{{folder_name}}"
|
|
version = "0.1.0"
|
|
description = "{{name}} using crewAI"
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10,<=3.13"
|
|
crewai = { extras = ["tools"], version = ">=0.61.0,<1.0.0" }
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
{{folder_name}} = "{{folder_name}}.main:main"
|
|
train = "{{folder_name}}.main:train"
|
|
replay = "{{folder_name}}.main:replay"
|
|
test = "{{folder_name}}.main:test"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|