-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
77 lines (73 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
76
77
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[scripts]
lint = "flake8 --count"
pylint = "bash -c \"cd src/ 2> /dev/null; cd ..; pylint src/\""
test = "coverage run --source='apps' manage.py test"
cov-report = "coverage report --skip-covered --skip-empty --precision=1 --sort=cover --fail-under=65"
cov = "bash -c \"cd src/ 2> /dev/null; coverage run --source='apps' manage.py test && coverage report --skip-covered --skip-empty --precision=1 --sort=cover --fail-under=65 && coverage html && echo '\n'file://$PWD/htmlcov/index.html\""
[packages]
asgiref = "<3.3.0,>=3.2.3"
astroid = "<2.5.0,>=2.4.1"
autopep8 = "<1.6.0,>=1.5.2"
certifi = "==2019.11.28"
chardet = "<3.1.0,>=3.0.4"
coreapi = "<2.4.0,>=2.3.3"
coreschema = "<0.1.0,>=0.0.4"
defusedxml = "<0.7.0,>=0.6.0"
dj-database-url = "<0.6.0,>=0.5.0"
Django = "<3.2.0,>=3.1.8"
django-allauth = "<0.42.0,>=0.41.0"
django-better-admin-arrayfield = "<1.4.0,>=1.3.0"
django-filter = "<2.4.0,>=2.3.0"
django-rest-auth = "<0.10.0,>=0.9.5"
djangorestframework = "<3.12.0,>=3.11.0"
djangorestframework-recursive = "<0.2.0,>=0.1.2"
drf-nested-routers = "<0.92.0,>=0.91"
drf-yasg = "<1.18.0,>=1.17.1"
gunicorn = "<20.1.0,>=20.0.4"
idna = "<2.10.0,>=2.9"
inflection = "<0.4.0,>=0.3.1"
isort = "<4.4.0,>=4.3.21"
itypes = "<1.2.0,>=1.1.0"
Jinja2 = "<2.12.0,>=2.11.1"
lazy-object-proxy = "<1.5.0,>=1.4.3"
MarkupSafe = "<1.2.0,>=1.1.1"
mccabe = "<0.7.0,>=0.6.1"
oauthlib = "<3.2.0,>=3.1.0"
openapi-codec = "<1.4.0,>=1.3.2"
Pillow = "<8.2.0,>=8.1.1"
pint = "*"
psycopg2 = "<2.9.0,>=2.8.4"
pyparsing = "<2.5.0,>=2.4.6"
python-decouple = "<3.4.0,>=3.3"
python3-openid = "<3.2.0,>=3.1.0"
pytz = "==2019.3"
qrcode = "<6.2,>=6.1"
requests = "<2.24.0,>=2.23.0"
requests-oauthlib = "<1.4.0,>=1.3.0"
"ruamel.yaml" = "<0.17.0,>=0.16.10"
"ruamel.yaml.clib" = "<0.3.0,>=0.2.0"
simplejson = "<3.18.0,>=3.17.0"
six = "<1.15.0,>=1.14.0"
sqlparse = "<0.4.0,>=0.3.0"
toml = "<0.11.0,>=0.10.0"
typed-ast = "<1.5.0,>=1.4.1"
uritemplate = "<3.1.0,>=3.0.1"
urllib3 = "<1.26.0,>=1.25.8"
whitenoise = "<5.1.0,>=5.0.1"
wrapt = "<1.13.0,>=1.12.1"
[dev-packages]
coverage = "*"
faker = "*"
flake8 = "*"
numpy = "<1.20.0,>=1.19.1"
opencv-python = "<4.5.0,>=4.4.0"
pycodestyle = "<2.8.0,>=2.6.0"
pylint = "<2.6.0,>=2.5.2"
pylint-django = "<2.1.0,>=2.0.15"
pylint-plugin-utils = "<0.7.0,>=0.6"
[requires]
python_version = "3.8"