-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (60 loc) · 1.36 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
63
64
65
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
(
/(
| venv
| _build
| buck-out
| build
| migrations
| config/settings
)/
)
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
[tool.poetry]
name = "lubimovka_backend"
version = "0.1.0"
description = "Lubimovka + Ya.Practicum backend"
authors = ["Ya.Practicum Students"]
[tool.poetry.dependencies]
python = "^3.9"
Django = "^3.2.10"
django-environ = "^0.7.0"
django-cors-headers = "^3.8.0"
djangorestframework = "^3.12.4"
psycopg2-binary = "^2.9.1"
gunicorn = "^20.1.0"
drf-spectacular = "^0.18.2"
django-filter = "^2.4.0"
Pillow = "^9.0.0"
django-admin-sortable2 = "^1.0.2"
django-phonenumber-field = {extras = ["phonenumbers"], version = "^5.2.0"}
factory-boy = "^3.2.0"
django-rest-multiple-models = "^2.1.3"
django-ckeditor = "^6.1.0"
pytest-lazy-fixture = "^0.6.3"
django-anymail = {extras = ["mailjet"], version = "^8.4"}
flake8-docstrings = "^1.6.0"
xhtml2pdf = "^0.2.5"
[tool.poetry.dev-dependencies]
pre-commit = "^2.15.0"
isort = "^5.9.3"
flake8 = "^3.9.2"
black = "^21.9b0"
ipython = "^7.31.1"
pytest-django = "^4.4.0"
coverage = "^5.5"
Werkzeug = "^2.0.1"
django-extensions = "^3.1.3"
django-debug-toolbar = "^3.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"