feat: add uv to flows

This commit is contained in:
Eduardo Chiarotti
2024-10-07 18:36:31 -03:00
parent 988994ada1
commit 3f1b86d7aa

View File

@@ -1,19 +1,19 @@
[tool.poetry] [project]
name = "{{folder_name}}" name = "{{folder_name}}"
version = "0.1.0" version = "0.1.0"
description = "{{name}} using crewAI" description = "{{name}} using crewAI"
authors = ["Your Name <you@example.com>"] authors = [{ name = "Your Name", email = "you@example.com" }]
requires-python = ">=3.10,<=3.13"
dependencies = [
"crewai[tools]>=0.67.1,<1.0.0",
"asyncio"
]
[tool.poetry.dependencies] [project.scripts]
python = ">=3.10,<=3.13"
crewai = { extras = ["tools"], version = ">=0.67.1,<1.0.0" }
asyncio = "*"
[tool.poetry.scripts]
{{folder_name}} = "{{folder_name}}.main:main" {{folder_name}} = "{{folder_name}}.main:main"
run_flow = "{{folder_name}}.main:main" run_flow = "{{folder_name}}.main:main"
plot_flow = "{{folder_name}}.main:plot" plot_flow = "{{folder_name}}.main:plot"
[build-system] [build-system]
requires = ["poetry-core"] requires = ["hatchling"]
build-backend = "poetry.core.masonry.api" build-backend = "hatchling.build"