-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
58 lines (52 loc) · 1.36 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool]
[tool.poetry]
authors = ["Brick Dev Team <[email protected]>"]
description = "brick server minimal"
license = "BSD-3-Clause"
name = "brick-server-minimal"
packages = [
{include = "brick_server"}
]
repository = "https://gitlab.com/mesl/brickserver/brick-server-minimal"
version = "0.1.0"
[tool.poetry.dependencies]
aiocache = {extras = ["redis"], version = "^0.12.1"}
aiofiles = "^0.7.0"
arrow = "^1.3.0"
asyncpg = "^0.29.0"
click-default-group = "^1.2.2"
fastapi = "^0.110.1"
fastapi-restful = "^0.5.0"
fastapi-users = {extras = ["beanie", "oauth"], version = "^13.0.0"}
grpcio = "^1.63.0"
httpx = "^0.27.0"
influxdb-client = {extras = ["async"], version = "^1.37.0"}
loguru = "^0.7.2"
protobuf = "^3.17.3"
pydantic = "^2.7.0"
pydantic-settings = "^2.2.1"
pyhumps = "^3.8.0"
python = "^3.10"
python-decouple = "^3.8"
python-multipart = "^0.0.9"
shapely = "^2.0.3"
typing-inspect = "^0.9.0"
uvicorn = {extras = ["standard"], version = "^0.29.0"}
[tool.poetry.dev-dependencies]
asgi-lifespan = "^1.0.1"
black = "^24.4.0"
pre-commit = "^2.15.0"
pytest = "^6.2.5"
pytest-asyncio = "^0.15.1"
pytest-depends = "^1.0.1"
pytest-env = "^0.6.2"
pytest-ordering = "^0.6"
tenacity = "^8.1.0"
[tool.pycln]
all = true
[tool.pytest.ini_options]
filterwarnings = "ignore::DeprecationWarning"
log_cli = 1