forked from fusion44/blitz_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 869 Bytes
/
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
[tool.poetry]
name = "blitz_api"
version = "0.5.0"
description = "A backend for the Raspiblitz project"
authors = ["fusion44 <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "0.82.0"
fastapi-plugins = "0.10.0"
anyio = "^3.6.1"
redis = "4.3.4"
aioredis = "2.0.1"
pydantic = "1.10.2"
uvicorn = "0.18.3"
PyJWT = "2.4.0"
python-decouple = "3.6"
psutil = "5.9.2"
requests = "2.28.1"
pyzmq = "23.2.1"
cchardet = "2.1.7"
aiohttp = "3.8.1"
grpcio = "1.48.1"
grpcio-tools = "1.48.1"
googleapis-common-protos = "1.56.4"
protobuf = "^3.20.3"
deepdiff = "5.8.1"
[tool.poetry.group.dev.dependencies]
black = "22.8.0"
pytest = "7.1.3"
coverage = "6.4.4"
pyclean = "2.2.0"
pre-commit = "2.20.0"
isort = "5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"