|
a |
|
b/setup.py |
|
|
1 |
from setuptools import setup |
|
|
2 |
|
|
|
3 |
setup( |
|
|
4 |
name="ddc_pub", |
|
|
5 |
version="0.3", |
|
|
6 |
description="Neural network to encode/decode molecules.", |
|
|
7 |
url="https://github.com/pcko1/Deep-Drug-Coder", |
|
|
8 |
author="Panagiotis-Christos Kotsias", |
|
|
9 |
author_email="kotsias.pan@gmail.com", |
|
|
10 |
license="MIT", |
|
|
11 |
packages=["ddc_pub"], |
|
|
12 |
install_requires=[ |
|
|
13 |
"numpy == 1.16.5", |
|
|
14 |
"h5py == 2.9.0", |
|
|
15 |
"tensorflow-gpu == 2.0.0", |
|
|
16 |
"tqdm == 4.35.0", |
|
|
17 |
"scikit-learn == 0.21.3", |
|
|
18 |
"scipy == 1.3.1", |
|
|
19 |
"ipykernel == 5.1.1", |
|
|
20 |
"ipython", |
|
|
21 |
"matplotlib == 3.1.1", |
|
|
22 |
"pandas == 0.25.1", |
|
|
23 |
"molsets == 0.2" |
|
|
24 |
], |
|
|
25 |
zip_safe=False, |
|
|
26 |
) |