mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 00:28:31 +00:00
This PR addresses an issue with the crewai run command following the creation of a flow project. Previously, the update command interfered with execution, causing it not to work as expected. With these changes, the command now runs according to the instructions in the readme.md, and it also improves deployment support when using CrewAI Cloud. Co-authored-by: Brandon Hancock (bhancock_ai) <109994880+bhancockio@users.noreply.github.com>
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.13"
|
|
dependencies = [
|
|
"crewai[tools]>=0.108.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"
|