-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (38 loc) · 976 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
44
45
46
47
[tool.isort]
profile = 'black'
[tool.black]
# skip-string-normalization = 1
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "website.settings_test"
addopts = "-x --cov --no-migrations"
[tool.poetry]
name = "gestione-donatori"
version = "0.1.0"
description = ""
authors = ["Denny Biasiolli <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
django-filter = "^24.3"
django-reversion = "^5.1.0"
djangorestframework = "^3.15.2"
django = "^5.1.5"
djangorestframework-simplejwt = "^5.4.0"
markdown = "^3.7"
openpyxl = "^3.1.5"
psycopg = "^3.2.4"
[tool.poetry.group.deploy.dependencies]
gunicorn = "^23.0.0"
uvicorn = "^0.34.0"
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
flake8 = "^7.1.1"
isort = "^6.0.0"
pylint = "^3.3.3"
pylint-django = "^2.6.1"
pytest-django = "^4.9.0"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"