-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.18 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.18 KB
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
import setuptools
from os import path
import iMiner
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
if __name__ == "__main__":
setuptools.setup(
name='iMiner',
version=iMiner.__version__,
author='Jie Li',
author_email='jerry-li1996@berkeley.edu',
project_urls={
'Source': 'https://github.com/THGLab/iMiner',
},
description=
"Inhibitor Mining protocol (iMiner) including Consensus Docking and MD Analysis",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
'Drug Discovery', 'Docking', 'Quantum Chemistry',
'Molecular Dynamics'
],
license='MIT',
packages=setuptools.find_packages(exclude=["tests"]),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
zip_safe=False,
)