-
Notifications
You must be signed in to change notification settings - Fork 102
/
pyproject.toml.dev
48 lines (44 loc) · 1.1 KB
/
pyproject.toml.dev
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
[tool.poetry]
name = "hexlet-friends"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Django = "^4.2.14"
python-dotenv = "^0.20.0"
requests = "^2.31.0"
gunicorn = "^20.1.0"
dj-database-url = "^0.5"
whitenoise = "^6.2.0"
python-dateutil = "^2.8.2"
APScheduler = "^3.9.1"
django-crispy-forms = "^1.14.0"
django-cte = "^1.2.1"
psycopg2 = { version = "^2.8", optional = true }
psycopg2-binary = { version = "^2.9.3", optional = true }
PyJWT = "^2.4.0"
cryptography = "^41.0.0"
crispy-bootstrap5 = "^0.6"
django-extensions = "^3.2.1"
black = "^23.3.0"
django-debug-toolbar = "^3.8.1"
django-mathfilters = "^1.0.0"
django-filter = "^23.2"
sentry-sdk = "^1.29.2"
pymemcache = "^4.0.0"
django-bmemcached = "^0.3.0"
[tool.poetry.group.dev.dependencies]
Faker = "^13.15.1"
coverage = "^6.4.2"
pre-commit = "^3.5.0"
pyparsing = "^3.1.1"
pydot = "^1.4.2"
flake8 = "^7.1.1"
[tool.poetry.extras]
psycopg2 = ["psycopg2"]
psycopg2-binary = ["psycopg2-binary"]
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"