forked from takahashigroup/CADS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
71 lines (67 loc) · 1.34 KB
/
Pipfile
File metadata and controls
71 lines (67 loc) · 1.34 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
60
61
62
63
64
65
66
67
68
69
70
71
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[dev-packages]
bandit = "*"
coverage = "*"
django-debug-toolbar = "*"
django-debug-toolbar-request-history = "*"
django-naomi = "*"
isort = "*"
model-mommy = "*"
pre-commit = "*"
safety = "*"
rope = "*"
coreapi-cli = "*"
black = "==21.5b0"
autoflake = "*"
mypy = "*"
pylint = "*"
[packages]
django = "~=3.2"
celery = {extras = ["redis"]}
django-model-utils = "*"
django-js-reverse = "*"
django-import-export = "*"
python-decouple = "*"
brotlipy = "*"
django-log-request-id = "*"
dj-database-url = "*"
gunicorn = "*"
whitenoise = "*"
psutil = "*"
ipython = "*"
django-guardian = "*"
rules = "*"
django-private-storage = "*"
djangorestframework = "*"
"django-tables2" = "*"
django-filter = "*"
"psycopg2-binary" = "*"
django-crispy-forms = "*"
pandas = "*"
django-rest-framework-rules = "*"
django-cors-headers = "*"
scikit-learn = "*"
numpy = "*"
scipy = "*"
coreapi = "*"
django-datatables-view = "*"
python-magic = "*"
django-rest-auth = "*"
djangorestframework-camel-case = "*"
joblib = "*"
django-markdownx = "*"
django-crequest = "*"
beautifulsoup4 = "*"
jsonfield2 = "*"
six = "*"
django-webpack-loader = "~=1.1.0"
scikit-image = "*"
[requires]
python_version = "3.9"
[scripts]
start = "python manage.py runserver"
test = "coverage run manage.py test"
coverage = "coverage html"