mirror of
https://github.com/crewAIInc/crewAI-examples.git
synced 2026-04-23 03:00:08 -04:00
25 lines
509 B
TOML
25 lines
509 B
TOML
[project]
|
|
name = "write_a_book_with_flows"
|
|
version = "0.1.0"
|
|
description = "write_a_book_with_flows using crewAI"
|
|
authors = [
|
|
{ name = "Your Name", email = "you@example.com" },
|
|
]
|
|
requires-python = ">=3.10,<=3.13"
|
|
dependencies = [
|
|
"asyncio>=3.4.3",
|
|
"crewai[tools]==0.114.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
kickoff = "write_a_book_with_flows.main:kickoff"
|
|
plot = "write_a_book_with_flows.main:plot"
|
|
|
|
[build-system]
|
|
requires = [
|
|
"hatchling",
|
|
]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.crewai]
|
|
type = "flow" |