forked from pharmai/plip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1009 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
from setuptools import setup, find_packages
from plip.basic import config
setup(name='plip',
version=config.__version__,
description='PLIP - Fully automated protein-ligand interaction profiler',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
url='https://github.com/pharmai/plip',
author='PharmAI GmbH',
author_email='[email protected]',
license='GPLv2',
packages=find_packages(),
scripts=['plip/plipcmd.py'],
install_requires=[
'openbabel',
'numpy',
'lxml'
],
entry_points={
"console_scripts": [
"plip = plip.plipcmd:main"
]
},
zip_safe=False)