-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1022 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
from setuptools import setup
if __name__ == '__main__':
with open("ReadMe.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='ISPIP',
version="1.15",
description='Integrated Structure-based Protein Interface Prediction',
url='https://github.com/eved1018/ISPIP',
author='Evan Edelstein',
author_email='[email protected]',
license='MIT',
packages=['ispip'],
data_files=[('',["ReadMe.md"])],
install_requires=[
'pandas',
'scikit-learn',
'joblib',
'argparse',
"numpy",
"scipy",
"graphviz",
"dtreeviz",
"matplotlib"],
long_description=long_description,
long_description_content_type='text/markdown',
entry_points = {
'console_scripts': ['ispip=ispip.ispip:main'],
})
# python setup.py sdist
# python3 -m twine upload dist/*