-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
62 lines (56 loc) · 1.02 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
# Should be the same as `$POETRY_VERSION` in backend.dockerfile:
requires = ["poetry==1.1.9"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "django-boilerplate"
version = "0.1.0"
description = ""
authors = [""]
[tool.poetry.dependencies]
python = ">=3.9.0,<4.0"
whitenoise = "^6.0.0"
dj-database-url = "^0.5.0"
psycopg2-binary = "^2.9.3"
gunicorn = "^20.1.0"
Unipath = "^1.1"
libsass = "^0.21.0"
environs = "^9.5.0"
django-extensions = "^3.1.5"
django-compressor = "^3.1"
Django = "^4.0.3"
[tool.poetry.dev-dependencies]
model-bakery = "^1.4.0"
pytest = "^7.1.1"
pytest-django = "^4.5.2"
pytest-mock = "^3.7.0"
pytest-spec = "^3.2.0"
pre-commit = "^2.17.0"
flake8 = "^4.0.1"
flake8-isort = "^4.1.1"
ipython = "^8.2.0"
django-debug-toolbar = "^3.2.4"
blue = "^0.8.0"
[tool.blue]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| _local
| bin
| misc
| _public
| _data
| config
| frontend
)/
'''