-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
83 lines (78 loc) · 1.77 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[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.25"
django-environ = "^0.8.1"
django-cors-headers = "^3.11.0"
djangorestframework = "3.13.1"
psycopg2-binary = "2.9.7"
gunicorn = "^23.0.0"
drf-spectacular = "^0.22.0"
django-filter = "^21.1"
Pillow = "^10.3.0"
django-admin-sortable2 = "^1.0.2"
django-debug-toolbar = "^4.2.0"
django-phonenumber-field = {extras = ["phonenumbers"], version = "^5.2.0"}
factory-boy = "^3.2.0"
django-rest-multiple-models = "^2.1.3"
django-ckeditor = "^6.7.1"
pytest-lazy-fixture = "^0.6.3"
django-anymail = {extras = ["mailjet"], version = "^8.4"}
flake8-docstrings = "^1.6.0"
xhtml2pdf = "^0.2.5"
google-api-python-client = "^2.36.0"
GitPython = "^3.1.41"
reportlab = "3.6.13"
yadisk = "^1.2.15"
django-filer = "^3.1.0"
certifi = "^2024.8.30"
pip = "^24.0"
werkzeug = "3.0.6"
urllib3 = "^2.2.2"
requests = "^2.32.3"
cryptography = "^43.0.1"
sqlparse = "^0.5.0"
easy-thumbnails = "^2.8.5"
idna = "^3.7"
black = "^24.4.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.15.0"
isort = "^5.9.3"
flake8 = "^3.9.2"
ipython = "^8.10.0"
pytest-django = "^4.5.2"
coverage = "^5.5"
django-extensions = "^3.1.3"
django-debug-toolbar = "^4.2.0"
pytest-freezegun = "^0.4.2"
pytest-sugar = "^0.9.4"
pytest-deadfixtures = "^2.2.1"
black = "^24.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"