-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.54 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
67
68
[tool.poetry]
name = "chat-backend"
version = "0.1.0"
description = ""
authors = ["Bekzod Mirahmedov <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "3.11.3"
fastapi = "^0.103.1"
pydantic = {extras = ["email"], version = "^2.3.0"}
uvicorn = "^0.23.2"
websockets = "^11.0.3"
alembic = "^1.12.0"
sqlalchemy = "^2.0.20"
pydantic-settings = "^2.0.3"
redis = "<5.0.0"
asyncpg = "^0.28.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
httpx = "^0.25.0"
pyjwt = "^2.8.0"
python-multipart = "^0.0.6"
fastapi-pagination = "^0.12.9"
fastapi-limiter = "^0.1.5"
asgi-lifespan = "^2.1.0"
sqladmin = "^0.16.0"
itsdangerous = "^2.1.2"
gunicorn = "^21.2.0"
aiofiles = "^23.2.1"
boto3 = "^1.33.9"
Pillow = "10.1.0"
sentry-sdk = {extras = ["asyncpg", "fastapi"], version = "^1.39.1"}
uvloop = "0.19.0"
httptools = "0.6.1"
[tool.poetry.group.test.dependencies]
pytest = "7.4.3"
pytest-asyncio = "0.23.5"
pytest-env = "1.1.3"
pytest-mock = "3.12.0"
pytest-xdist = "3.5.0"
[tool.poetry.group.lint.dependencies]
ruff = "0.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
exclude = ["alembic"]
[tool.ruff.lint]
extend-select = ["W", "E", "I"]
preview = true
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
asyncio_mode="auto"
markers = [
"integration: Custom mark for integration tests"
]
env = [
"ENVIRONMENT = test",
]