-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (59 loc) · 1.42 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
[tool.poetry]
name = "strike"
version = "0.1.0"
description = ""
authors = ["Aleksei Khatkevich <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "> 0.95 < 1.0"
uvicorn = "> 0.22 < 0.30"
uvloop = "0.17.*"
httptools = "0.6.*"
sqlalchemy = "2.0.*"
orjson = "3.*"
asyncpg = "0.28.*"
alembic = "^1.11"
python-dotenv = "^1.0.0"
email-validator = "^2.0.0"
bcrypt = "4.*"
pyjwt = {extras = ["crypto"], version = "2.*"}
yarl = "1.9.*"
aiopath = "0.6.*"
aioshutil = "^1.3"
pyyaml = "6.*"
loguru = "0.7.*"
python-multipart = "^0.0.6"
slowapi = "0.1.*"
redis = {extras = ["hiredis"], version = "^4.5.5"}
geoalchemy2 = "^0.14"
shapely = "^2.0.1"
pyproj = "3.6.*"
fastapi-pagination = "0.12.*"
setuptools = "67.0.0" # косяк с 68+, ждать
pydantic-settings = "^2.0.1"
dogpile-cache = "^1.2.2"
sqlalchemy-utils = "^0.41.1"
pydantic = "2.*"
websockets = "11.*"
protobuf = "4.*"
strawberry-graphql = {extras = ["debug-server"], version = "~0.204"}
grpcio = "^1.57.0"
grpcio-tools = "^1.57.0"
grpcio-reflection = "^1.57.0"
aiorun = "^2023.7.2"
confluent-kafka = "^2.2.0"
aiokafka = "^0.8.1"
[tool.poetry.group.dev.dependencies]
pytest-env = "*"
pytest = "7.3.*"
pytest-randomly = "*"
httpx = "0.24.*"
pytest-asyncio = "*"
factory-boy = "*"
pytest-factoryboy = "*"
bump-pydantic = "^0.1.0"
grpcio-testing = "^1.57.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"