-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 879 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
[tool.poetry]
name = "felpsbot-backend"
version = "0.1.0"
description = "FelpsBot Backend"
authors = ["Pármenas Haniel <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.11.4"
fastapi = "^0.99.1"
httpx = "^0.24.1"
loguru = "^0.7.0"
redis = "^4.6.0"
Authlib = "^1.1.0"
orjson = "^3.9.1"
iso8601 = "^2.0.0"
uvicorn = { extras = ["standard"], version = "^0.22.0" }
humanize = "^4.7.0"
prisma = "^0.9.1"
aio-pika = "^9.1.4"
[tool.poetry.dev-dependencies]
black = "^23.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
freezegun = "^1.2.2"
pytest-asyncio = "^0.21.1"
asgi-lifespan = "^2.1.0"
doppler-env = "^0.3.1"
pytest-cov = "^4.1.0"
[tool.pytest.ini_options]
pythonpath = "./src/"
filterwarnings = "ignore::DeprecationWarning"
[tool.black]
line-length = 119
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"