-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPipfile
More file actions
59 lines (54 loc) · 1.24 KB
/
Pipfile
File metadata and controls
59 lines (54 loc) · 1.24 KB
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
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[scripts]
manage = "cd ./src && python manage.py"
init = "pre-commit install --hook-type commit-msg"
lint = "pre-commit run -a"
fix = "black --line-length=130 --target-version=py38 --verbose ./src"
tests = "coverage run --source='./src' -m pytest --suppress-no-test-exit-code"
serve = "python ./src/manage.py runserver"
[requires]
python_version = "3.8.6"
[packages]
django = "*"
djangorestframework = "*"
django-cors-headers = "*"
psycopg2-binary = "*"
requests = "*"
pillow = "*"
djangorestframework-simplejwt = "*"
djoser = "*"
[dev-packages]
ipython = "*"
django-debug-toolbar = "*"
commitizen = "*"
pre-commit = "*"
black = "*"
flake8 = "*"
flake8-bandit = "*"
flake8-broken-line = "*"
flake8-bugbear = "*"
flake8-builtins = "*"
flake8-commas = "*"
flake8-comprehensions = "*"
flake8-debugger = "*"
flake8-eradicate = "*"
flake8-executable = "*"
flake8-fixme = "*"
flake8-pyi = "*"
flake8-pytest = "*"
flake8-pytest-style = "*"
flake8-mutable = "*"
flake8-string-format = "*"
flake8-todo = "*"
flake8-unused-arguments = "*"
coverage = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
pytest-custom-exit-code = "*"
flake8-django = "*"
[pipenv]
allow_prereleases = true