forked from python-discord/site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
49 lines (45 loc) · 1.08 KB
/
Pipfile
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
django = "~=3.0.4"
django-environ = "~=0.4.5"
django-filter = "~=2.1.0"
django-hosts = "~=4.0"
djangorestframework = "~=3.11.0"
psycopg2-binary = "~=2.8"
django-simple-bulma = "~=1.2"
whitenoise = "~=5.0"
requests = "~=2.21"
pygments = "~=2.7.4"
wiki = "~=0.6.0"
pyyaml = "~=5.1"
gunicorn = "~=20.0.4"
django-allauth = "~=0.41"
sentry-sdk = "~=0.19"
[dev-packages]
coverage = "~=5.0"
flake8 = "~=3.7"
flake8-annotations = "~=2.0"
flake8-bandit = "~=2.1"
flake8-bugbear = "~=20.1"
flake8-docstrings = "~=1.5"
flake8-import-order = "~=0.18"
flake8-string-format = "~=0.3"
flake8-tidy-imports = "~=4.0"
flake8-todo = "~=0.7"
mccabe = "~=0.6.1"
pep8-naming = "~=0.9"
pre-commit = "~=2.1"
coveralls = "~=2.1"
[requires]
python_version = "3.8"
[scripts]
start = "python manage.py run --debug"
makemigrations = "python manage.py makemigrations"
django_shell = "python manage.py shell"
test = "coverage run manage.py test"
report = "coverage report -m"
lint = "pre-commit run --all-files"
precommit = "pre-commit install"