-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 984 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "automate-blog-post-creation"
version = "0.1.0"
description = "Automate Blog Post creation task with CrewAI"
authors = [
"bhancock_ai <[email protected]>",
"joao Moura <[email protected]>",
"frobledo <[email protected]>",
]
[tool.poetry.dependencies]
python = ">=3.10.0,<3.12"
crewai = { extras = ["tools"], version = "^0.19.0" }
pydantic = "^2.6.3"
load-dotenv = "^0.1.0"
crewai-tools = "^0.0.15"
langchain-google-genai = "^0.0.11"
langchain-groq = "^0.0.1"
streamlit = "^1.32.2"
langchain-anthropic = "^0.1.4"
watchdog = "^4.0.0"
markdown = "^3.6"
[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']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"