From 4be08f7bdd77991e9e453c1cda863c3f20c338d5 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Thu, 2 Jul 2020 20:48:33 +0530 Subject: initial commit --- setup.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..823e7e5 --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +from setuptools import setup + +setup(name='plip', + version='2.1.0-beta', + 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='hello@pharm.ai', + license='GPLv2', + packages=['plip'], + scripts=['plip/plipcmd.py'], + install_requires=[ + 'openbabel', + 'numpy', + 'lxml', + 'pymol' + ], + zip_safe=False) -- cgit v1.2.3