-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (41 loc) · 991 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
[tool.poetry]
name = "sos-django-template"
version = "0.6.0"
description = ""
authors = ["Eray Erdin <[email protected]>"]
license = "WTFPL"
[tool.poetry.dependencies]
python = "^3.7"
djangorestframework = "^3.13.1"
celery = "^5.2.3"
environs = { extras = ["django"], version = "^9.3.2" }
psycopg2 = "^2.9.3"
django-extensions = "^3.1.5"
Django = "^3.2"
[tool.poetry.dev-dependencies]
pytest-django = "^4.5.2"
black = "^22.1.0"
django-debug-toolbar = "^3.2.4"
django-cors-headers = "^3.11.0"
pre-commit = "^2.17.0"
ipython = "^7"
pytest-pudb = "^0.7.0"
flake8-django = "^1.1.2"
isort = "^5.10.1"
pytest-factoryboy = "^2.1.0"
pytest-cov = "^3.0.0"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "project.settings.development"
[tool.isort]
known_third_party = [
"celery",
"django",
"environs",
"factory",
"pytest_factoryboy",
]
multi_line_output = 3
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"