forked from drorlab/atom3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·35 lines (27 loc) · 840 Bytes
/
Makefile
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
#################################################################################
# COMMANDS #
#################################################################################
## Install Python Dependencies
requirements:
pip install -U pip setuptools wheel
pip install -r requirements.txt
# Setup environment file.
env:
cp -n .env.template .env
# Install rdkit
rdkit:
conda install -c conda-forge -y rdkit
# Install GPU tensorflow
tensorflow-gpu:
pip install tensorflow-gpu==1.15.0
# Install CPU tensorflow
tensorflow:
pip install tensorflow==1.15.0
## Delete all compiled Python files
clean:
find . -type f -name "*.py[co]" -delete
find . -type d -name "__pycache__" -delete
find . -type f -name ".*.swp" -delete
## Lint using flake8
lint:
flake8 src