mirror of
https://github.com/crewAIInc/crewAI-examples.git
synced 2026-01-07 21:13:52 -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
627 B
TOML
26 lines
627 B
TOML
[project]
|
|
name = "landing-page-crew"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [{name = "Your Name", email = "you@example.com"}]
|
|
requires-python = ">=3.10.0,<3.12"
|
|
dependencies = [
|
|
"python-dotenv==1.0.0",
|
|
"crewai>=0.152.0",
|
|
"unstructured>=0.16.4",
|
|
]
|
|
|
|
[project.scripts]
|
|
landing_page_generator = "landing_page_generator.main:run"
|
|
|
|
[tool.pyright]
|
|
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
|
|
useLibraryCodeForTypes = true
|
|
exclude = [".cache"]
|
|
|
|
[tool.ruff]
|
|
# https://beta.ruff.rs/docs/configuration/
|
|
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
|
|
ignore = ['W291', 'W292', 'W293']
|
|
|