-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.04 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
[tool.poetry]
name = "velog-dashboard-v2-back-office"
version = "0.1.0"
description = ""
authors = ["BDlhj <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.13"
django = "^5.1.5"
django-cors-headers = "^4.6.0"
django-environ = "^0.11.2"
cryptography = "^43.0.3"
django-timescaledb = "^0.2.13"
psycopg = { extras = ["binary"], version = "^3.2.3" }
aiohttp = "^3.11.10"
aiohttp-retry = "^2.9.1"
uvicorn = "^0.34.0"
gunicorn = "^23.0.0"
async-timeout = "^5.0.1"
sentry-sdk = "^2.24.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.7.4"
pytest = "^8.3.3"
mypy = "^1.13.0"
pytest-cov = "^6.0.0"
django-debug-toolbar = "^4.4.6"
django-extensions = "^3.2.3"
pre-commit = "^4.0.1"
ipython = "^8.29.0"
pytest-django = "^4.9.0"
pytest-asyncio = "^0.25.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "backoffice.settings.local"
python_files = ["test_*.py"]
filterwarnings = ["ignore::pytest.PytestDeprecationWarning"]
asyncio_mode = "strict"