mirror of
https://github.com/crewAIInc/crewAI-examples.git
synced 2026-01-08 21:38:03 -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>
16 lines
347 B
TOML
16 lines
347 B
TOML
[project]
|
|
name = "job_posting"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [{name = "Your Name", email = "you@example.com"}]
|
|
readme = "README.md"
|
|
requires-python = ">=3.12,<=3.13"
|
|
dependencies = [
|
|
"crewai[tools]>=0.152.0",
|
|
"python-dotenv>=1.0.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
job_posting = "job_posting.main:run"
|
|
train = "job_posting.main:train"
|