mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 08:08:32 +00:00
* feat: Start migrating to UV * feat: add uv to flows * feat: update docs on Poetry -> uv * feat: update docs and uv.locl * feat: update tests and github CI * feat: run ruff format * feat: update typechecking * feat: fix type checking * feat: update python version * feat: type checking gic * feat: adapt uv command to run the tool repo * Adapt tool build command to uv * feat: update logic to let only projects with crew to be deployed * feat: add uv to tools * fix; tests * fix: remove breakpoint * fix :test * feat: add crewai update to migrate from poetry to uv * fix: tests * feat: add validation for ˆ character on pyproject * feat: add run_crew to pyproject if doesnt exist * feat: add validation for poetry migration * fix: warning --------- Co-authored-by: Vinicius Brasil <vini@hey.com>
20 lines
475 B
TOML
20 lines
475 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.13"
|
|
dependencies = [
|
|
"crewai[tools]>=0.67.1,<1.0.0",
|
|
"asyncio"
|
|
]
|
|
|
|
[project.scripts]
|
|
{{folder_name}} = "{{folder_name}}.main:main"
|
|
run_flow = "{{folder_name}}.main:main"
|
|
plot_flow = "{{folder_name}}.main:plot"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|