File size: 685 Bytes
6fa5083
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[tool.poetry]
name = "crewai-basics"
version = "0.1.0"
description = "Simple ai research"
authors = ["Joao Moura, Z"]

[tool.poetry.dependencies]
python = ">=3.10,<=3.13"
crewai = "0.28.6"
crewai-tools = "0.1.6"
python-dotenv = "1.0.0"
langchain-openai = "^0.0.5"

[tool.poetry.extras]
tools = ["crewai-tools"]

[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"