mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 15:48:29 +00:00
Some checks failed
Notify Downstream / notify-downstream (push) Has been cancelled
- Bump crewAI version to 0.141.0 in __init__.py for alignment with updated dependencies. - Update `crewai-tools` dependency version to 0.51.0 in pyproject.toml and related template files. - Add new testing dependencies: pytest-split and pytest-xdist for improved test execution. - Ensure compatibility with the latest package versions in uv.lock and template files.
22 lines
483 B
TOML
22 lines
483 B
TOML
[project]
|
|
name = "{{folder_name}}"
|
|
version = "0.1.0"
|
|
description = "{{name}} using crewAI"
|
|
authors = [{ name = "Your Name", email = "you@example.com" }]
|
|
requires-python = ">=3.10,<3.14"
|
|
dependencies = [
|
|
"crewai[tools]>=0.141.0,<1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
kickoff = "{{folder_name}}.main:kickoff"
|
|
run_crew = "{{folder_name}}.main:kickoff"
|
|
plot = "{{folder_name}}.main:plot"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.crewai]
|
|
type = "flow"
|