-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 920 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 = "django-bootstrap"
version = "0.1.0"
description = ""
authors = ["Olivier Banville <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
Django = "^4.0.3"
psycopg2-binary = "^2.9.3"
djangorestframework = "^3.13.1"
django-storages = "^1.12.3"
boto3 = "^1.21.37"
gunicorn = "^20.1.0"
django-db-prefix = "^1.0.5"
django-cors-headers = "^3.11.0"
pytest = "^7.1.2"
pytest-django = "^4.5.2"
PyYAML = "^6.0"
uritemplate = "^4.1.1"
drf-spectacular = "^0.22.0"
redis = "^4.2.2"
django-redis = "^5.2.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
flake8 = "^4.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings.local"
python_files = ["test_*.py"]
norecursedirs =[
"*.egg-info",
".git",
".github",
"__pycache__",
"infra",
"htmlcov",
"static"]