-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.6 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "backend"
version = "0.1.0"
description = "A FastAPI app to manage AI teams."
authors = [
"Agent OS <[email protected]>"
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.13,<4.0.0"
agency-swarm = "0.4.4"
cachetools = ">=5.5.0"
cryptography = ">=44.0.0"
fastapi = ">=0.115.0"
duckduckgo-search = ">=7.0.0"
firebase-admin = ">=6.3.0"
google-cloud-logging = ">=3.11.2"
gunicorn = ">=23.0.0"
openai = ">=1.58.1"
oracledb = ">=2.4.1"
passlib = {extras = ["bcrypt"], version = ">=1.7.4"}
psycopg2-binary = ">=2.9.9"
pyairtable = ">=3.0.1"
pydantic = ">=2.8.2"
pydantic-settings = ">=2.5.2"
pymysql = ">=1.1.1"
pyodbc = ">=5.1.0"
redis = ">=5.1.1"
sqlalchemy = ">=1.4.54"
sqlalchemy-redshift = ">=0.8.14"
tiktoken = ">=0.8.0"
uvicorn = {extras = ["standard"], version = ">=0.34.0"}
[tool.poetry.group.dev.dependencies]
poetry-plugin-export = ">=1.6.0"
pre-commit = ">=3.6.0"
pytest = ">=7.4.3"
pytest-asyncio = ">=0.23.3"
pytest-cov = ">=4.1.0"
pytest-mock = ">=3.14.0"
[tool.pyright]
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
useLibraryCodeForTypes = true
exclude = [".cache"]
[tool.ruff]
# https://beta.ruff.rs/docs/configuration/
line-length = 120
target-version = "py313"
[tool.ruff.lint]
ignore = ['W291', 'W292', 'W293']
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM', 'UP']
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.ruff.lint.flake8-bugbear]
extend-immutable-calls = ["fastapi.Depends", "fastapi.params.Depends", "fastapi.Body", "fastapi.params.Body"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"