-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
39 lines (38 loc) · 1.21 KB
/
setup.py
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
from setuptools import setup, find_packages
import io
setup( name='Drugnome-AI',
version='1.0.0',
author='Arwa Raies, James Stainer, Ewa Tulodziecka, Dimitrios Vitsios',
author_email='dimitrios.vitsios@astrazeneca.com',
description='DrugnomeAI: Target Druggability Prediction from Public Data by Stochastic Semi-Supervised Learning',
url="https://github.com/AstraZeneca-CGR/drugnomeAI",
packages=find_packages(),
python_requires='>=3.6',
install_requires=['setuptools==39.1.0',
'numpy==1.16.3',
'numpydoc==0.8.0',
'pandas==0.24.2',
'scipy==1.2.1',
'scikit-learn==0.20.3',
'bokeh==1.1.0',
'h5py==2.9.0',
'tensorflow==1.12.0',
'Keras==2.2.4',
'matplotlib==3.0.3',
'palettable==3.1.1',
'plotly==3.9.0',
'PyYAML==5.1',
'seaborn==0.9.0',
'tables==3.5.1',
'twine==3.0.0',
'tqdm==4.14',
'umap-learn==0.3.8',
'xgboost==0.80',
'numba==0.37',
'llvmlite==0.22',
'grpcio==1.8.6',
'docutils==0.14',
'pillow==4.0'],
include_package_data=True,
entry_points={'console_scripts': ['drugnomeai=drugnome_ai.modules.main.__main__:main']}
)