This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
66 lines (58 loc) · 1.61 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
66
[tool.poetry]
name = "backend"
version = "0.1.0"
description = "A FastAPI app to manage AI teams."
authors = [
"AI in Hand <[email protected]>"
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11.0a1,<3.13"
agency-swarm = "0.2.6"
cachetools = "^5.5.0"
cryptography = "^43.0.1"
fastapi = "^0.115.0"
duckduckgo-search = "^6.3.0"
firebase-admin = "^6.3.0"
google-cloud-logging = "^3.11.2"
gunicorn = "^23.0.0"
instructor = "^1.2.2"
openai = "^1.23.3"
oracledb = "^2.4.1"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
psycopg2-binary = "^2.9.9"
pyairtable = "^2.3.3"
pydantic = "^2.9.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.31.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 = "py311"
[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"