mirror of
https://github.com/crewAIInc/crewAI-examples.git
synced 2026-01-10 06:17:58 -05:00
19 lines
464 B
TOML
19 lines
464 B
TOML
[tool.poetry]
|
|
name = "marketing_posts"
|
|
version = "0.1.0"
|
|
description = "marketing-posts using crewAI"
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10,<=3.13"
|
|
crewai = { extras = ["tools"], version = "^0.35.8" }
|
|
crewai-tools = "^0.4.6"
|
|
|
|
[tool.poetry.scripts]
|
|
marketing_posts = "marketing_posts.main:run"
|
|
train = "marketing_posts.main:train"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|