-
Notifications
You must be signed in to change notification settings - Fork 1
/
Pipfile
65 lines (61 loc) · 1.32 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
model-mommy = "*"
unittest-xml-reporting = "*"
vcrpy = "*"
vcrpy-unittest = "*"
coverage = "*"
flake8 = "*"
isort = "*"
pytest = "*"
autopep8 = "*"
pytest-cov = "*"
mypy = "*"
watchdog = "*"
argh = "*"
[packages]
django = "*"
django-heroku = "*"
environs = "*"
furl = "*"
djangorestframework = "*"
django-filter = "*"
social-auth-app-django = "*"
django-polymorphic = "*"
django-cors-headers = "*"
drf-yasg = "*"
djangorestframework-xml = "*"
apache-libcloud = "*"
djangorestframework-csv = "*"
django-rest-polymorphic = "*"
conllu = "*"
chardet = "*"
colour = "*"
pyexcel = "*"
seqeval = "*"
whitenoise = "*"
dj-database-url = "*"
python-jose = "*"
pyexcel-xlsx = "*"
lockfile = "*"
gunicorn = "*"
fasteners = "*"
auto-labeling-pipeline = "*"
dj-rest-auth = "*"
django-drf-filepond = "*"
celery = "*"
django-celery-results = "*"
sqlalchemy = "*"
six = "*"
[requires]
python_version = "3.8"
[scripts]
isort = "isort api -c --skip migrations"
flake8 = "flake8 --filename \"*.py\" --extend-exclude \"server,api/migrations,api/views/__init__.py,authentification,api/apps.py\""
wait_for_db = "python manage.py wait_for_db"
test = "python manage.py test api.tests"
migrate = "python manage.py migrate"
collectstatic = "python manage.py collectstatic --noinput"