-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
23 lines (23 loc) · 946 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
from distutils.core import setup
setup(name='PyPLIF',
version='0.1',
author='Muhammad Radifar',
author_email='m.radifar05@gmail.com',
packages=['pyplif'],
package_data={'pyplif': ['LICENSE.txt', 'setup.sh']},
url='http://code.google.com/p/pyplif/',
description=['PyPLIF is a program/script written in Python to analyze protein-ligand interaction from the molecular docking result'],
long_description=open('README.txt').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: Chemistry',
],
)