mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-26 16:48:13 +00:00
feat: add uv to flows
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user