-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 956 Bytes
/
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
from setuptools import setup, find_packages
def get_readme():
"""
Load README.md text for use as description.
"""
with open('README.md') as f:
return f.read()
setup(
name='DL-RP-MDS',
version='1.0.0',
description='Variant Classification using MD Simulations',
long_description=get_readme(),
license='BSD 3-Clause "New" or "Revised" License',
maintainer='Chon Lok Lei',
maintainer_email='[email protected]',
packages=find_packages(include=('method')),
install_requires=[
'numpy==1.19.5',
'scipy==1.6.0',
'pandas==1.2.1',
'joblib==1.0.0',
'matplotlib==3.3.3',
#'scikit-learn==0.24.0',
'scikit-learn==1.0.0',
'tensorflow==2.5.0',
'tensorflow-addons==0.13.0',
'keras-tuner==1.0.2',
'imbalanced-learn==0.8.1',
'seaborn==0.11.1',
],
extras_require={
'jupyter': ['jupyter'],
},
)