mirror of
https://github.com/crewAIInc/crewAI-examples.git
synced 2026-01-09 13:57:57 -05:00
* Reorganize repo structure and upgrade to CrewAI 0.152.0 * chore(gitignore): ignore Python bytecode and __pycache__ across templates * chore(gitignore): ignore Python bytecode and __pycache__ across templates; clean tracked artifacts * Update crews/instagram_post/pyproject.toml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
26 lines
602 B
TOML
26 lines
602 B
TOML
[project]
|
|
name = "email_auto_responder_flow"
|
|
version = "0.1.0"
|
|
description = "email_auto_responder_flow using crewAI"
|
|
authors = [
|
|
{ name = "Your Name", email = "you@example.com" },
|
|
]
|
|
requires-python = ">=3.10,<=3.13"
|
|
dependencies = [
|
|
"crewai[tools]>=0.152.0",
|
|
"langchain-tools>=0.1.34",
|
|
"crewai-tools>=0.58.0",
|
|
"google-auth-oauthlib>=1.2.1",
|
|
"google-api-python-client>=2.145.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
kickoff = "email_auto_responder_flow.main:kickoff"
|
|
plot = "email_auto_responder_flow.main:plot"
|
|
|
|
[build-system]
|
|
requires = [
|
|
"hatchling",
|
|
]
|
|
build-backend = "hatchling.build"
|