-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
36 lines (29 loc) · 874 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
from setuptools import setup
"""
Description of how to make a python package
https://python-packaging.readthedocs.io/en/latest/command-line-scripts.html
"""
def readme():
with open('README.md') as f:
return f.read()
setup(name='dockingML',
version='1.2.0',
long_description=readme(),
description='Molecular dynamics analysis, Docking and Machine Learning for Computer Aid Drug discovery',
url='https://github.com/zhenglz/dockingML',
author='zhenglz',
author_email='zhenglz@outlook.com',
license='GPL-3.0',
packages=['dockml', 'mdanaly', 'automd'],
install_requires=[
'numpy',
'pandas',
'scikit-learn',
'matplotlib',
'networkx',
'mdtraj',
],
include_package_data=True,
zip_safe=False,
python_requires='>=3.5',
)