forked from adamtlord/django-vue-hybrid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (47 loc) · 1.06 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
[tool.poetry]
name = "tivix-django-backend-base"
version = "0.2.0"
description = ""
authors = ["Sumit Chachra <[email protected]>, Mikolaj Kosmal <[email protected]>, Dhruv Singh <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8.5"
Django = "^3.0.*"
# Django packages
django-extensions = "^3.0.*"
django-webpack-loader = "^0.7.0"
djangorestframework = "^3.12.2"
django-compressor = "^2.4"
# Python packages
psycopg2 = "2.8.*"
# Other misc.
flake8 = "3.8.*"
elastic-apm = "5.8.*"
# Gunicorn
gunicorn = "^20.0.4"
gevent = "^20.9.0"
[tool.poetry.dev-dependencies]
black = {version = "19.10b0", allow-prereleases = true, python = "^3.8", markers = "platform_python_implementation == 'CPython'"}
django-fixture-magic = "0.1.5"
django-debug-toolbar ="2.2"
tblib = "1.6.*"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
| snapshots
)/
'''