2021-09-20 19:37:24 +02:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "blitz_api"
|
2023-02-05 21:24:31 +01:00
|
|
|
version = "0.5.1"
|
2021-09-20 19:37:24 +02:00
|
|
|
description = "A backend for the Raspiblitz project"
|
|
|
|
|
authors = ["fusion44 <some.fusion@gmail.com>"]
|
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-07-23 15:07:32 +02:00
|
|
|
python = "^3.9"
|
2023-03-12 16:33:41 +01:00
|
|
|
fastapi = "0.94.0"
|
|
|
|
|
fastapi-plugins = "0.11.0"
|
2022-09-10 13:42:50 +02:00
|
|
|
anyio = "^3.6.1"
|
2023-03-29 20:50:16 +02:00
|
|
|
redis = "4.5.4"
|
2022-09-10 13:42:50 +02:00
|
|
|
aioredis = "2.0.1"
|
|
|
|
|
pydantic = "1.10.2"
|
2022-11-28 19:15:26 +01:00
|
|
|
uvicorn = "0.20.0"
|
|
|
|
|
PyJWT = "2.6.0"
|
2022-07-23 15:07:32 +02:00
|
|
|
python-decouple = "3.6"
|
2022-11-28 19:15:26 +01:00
|
|
|
psutil = "5.9.4"
|
2022-07-23 15:07:32 +02:00
|
|
|
requests = "2.28.1"
|
2023-03-12 16:33:41 +01:00
|
|
|
pyzmq = "25.0.0"
|
2022-07-23 15:07:32 +02:00
|
|
|
cchardet = "2.1.7"
|
2022-11-28 19:15:26 +01:00
|
|
|
aiohttp = "3.8.3"
|
|
|
|
|
grpcio = "1.50.0"
|
|
|
|
|
grpcio-tools = "1.50.0"
|
|
|
|
|
googleapis-common-protos = "1.57.0"
|
|
|
|
|
protobuf = "^4.21.9"
|
2022-07-23 15:07:32 +02:00
|
|
|
deepdiff = "5.8.1"
|
2022-12-18 20:55:31 +01:00
|
|
|
loguru = "^0.6.0"
|
2023-04-05 22:11:29 +02:00
|
|
|
sqlalchemy = "^2.0.8"
|
|
|
|
|
alembic = "^1.10.2"
|
|
|
|
|
aiosqlite = "^0.18.0"
|
2021-09-20 19:37:24 +02:00
|
|
|
|
2022-09-10 13:42:50 +02:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2022-09-11 19:33:46 +02:00
|
|
|
black = "22.10.0"
|
2023-03-12 16:33:41 +01:00
|
|
|
pytest = "7.2.2"
|
2022-09-10 13:42:50 +02:00
|
|
|
coverage = "6.4.4"
|
2022-07-23 15:07:32 +02:00
|
|
|
pyclean = "2.2.0"
|
|
|
|
|
pre-commit = "2.20.0"
|
|
|
|
|
isort = "5.10.1"
|
2022-08-24 20:56:40 +02:00
|
|
|
pytest-asyncio = "^0.19.0"
|
2021-09-20 19:37:24 +02:00
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2022-03-20 16:00:25 +01:00
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
|
profile = "black"
|