-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (74 loc) · 1.82 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
[tool.poetry]
name = "procollab-backend"
version = "0.1.0"
description = ""
authors = ["Sergey Yaksanov <[email protected]>"]
readme = "README.md"
packages = []
[tool.black]
line-length = 90
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| venv
| migrations
| blib2to3
| tests/data
)/
'''
[tool.poetry.dependencies]
python = "^3.11"
djangorestframework = "^3.14.0"
flake8 = "^5.0.4"
python-decouple = "^3.6"
psycopg2-binary = "^2.9.4"
django-cleanup = "^6.0.0"
django-cors-headers = "^3.13.0"
django-debug-toolbar = "^3.7.0"
Pillow = "^9.2.0"
djangorestframework-simplejwt = {extras = ["crypto"], version = "^5.2.1"}
pre-commit = "^2.20.0"
black = "^22.10.0"
uritemplate = "^4.1.1"
pyyaml = { version = "!=6.0.0,!=5.4.0,!=5.4.1" }
django-rest-passwordreset = "^1.3.0"
django-filter = "^22.1"
setuptools = "^65.5.0"
drf-yasg = "^1.21.4"
sentry-sdk = "^1.10.1"
whitenoise = "^6.2.0"
six = "^1.16.0"
aiohttp = "^3.8.3"
django = {extras = ["bcrypt"], version = "^4.1.3"}
channels-redis = "^4.0.0"
channels = {extras = ["daphne"], version = "^4.0.0"}
django-taggit = "^3.1.0"
requests = "^2.31.0"
coreapi = "^2.3.3"
webp = "^0.1.6"
django-prometheus = "^2.3.1"
loguru = "^0.7.1"
tablib = {extras = ["xlsx"], version = "^3.5.0"}
django-redis = "^5.3.0"
django-stubs = {extras = ["compatible-mypy"], version = "^4.2.6"}
djangorestframework-stubs = {extras = ["compatible-mypy"], version = "^3.14.4"}
flake8-print = "^5.0.0"
flake8-variables-names = "^0.0.6"
pandas = "^2.2.1"
celery = "^5.4.0"
django-celery-beat = "^2.6.0"
weasyprint = "^62.3"
django-anymail = "^12.0"
phonenumbers = "^8.13.47"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "setuptools.build_meta"