aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 823e7e5b93d8a2c166b0088f28aece05a54a2d3b (plain)
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
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)