-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPipfile
44 lines (40 loc) · 1.02 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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
networkx = "*"
numpy = "*"
pandas = "*"
scikit-learn = "*"
scipy = "*"
gensim = "*"
keras = "*"
# TensorFlow is installed from a custom wheel because the VM architecture doesn't support AVX instructions.
tensorflow = {file = "https://tf.novaal.de/core2/tensorflow-2.8.0-cp38-cp38-linux_x86_64.whl"}
# Protobuf is fixed to version 3.20.3 due to compatibility with the custom TensorFlow wheel.
protobuf = "==3.20.3"
# Fix for database connection isn't set to UTC issue.
psycopg2-binary = "==2.8.6"
redis = "*"
celery = "*"
gunicorn = "*"
pymzml = "*"
ChemSpiPy = "*"
jsonpickle = "*"
tqdm = "*"
requests = "*"
django = "<4"
django-extensions = "*"
django-grappelli = "*"
django-markdown2 = "*"
django-model-utils = "*"
django-ipware = "*"
django-debug-toolbar = "*"
django-debug-toolbar-force = "*"
django-countries = "*"
[dev-packages]
[requires]
python_version = "3.8"
[scripts]
runcelery = "/bin/bash -c 'cd ms2ldaviz && exec ./start_celery_prod.sh'"