forked from pymzml/pymzML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.79 KB
/
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
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
from distutils.core import setup
setup(name='pymzml',
version='0.8.1',
packages = ['pymzml'],
package_dir = {'pymzml': 'pymzml'},
package_data={'pymzml': ['obo/*.obo']},
install_requires=['plotly',],
description='high-throughput mzML parsing',
long_description='pymzML - python module for mzML parsing',
author='T. Bald, J. Barth, A. Niehues, M. Specht, M. Hippler, C. Fufezan',
author_email='[email protected]',
url='http://pymzml.github.com',
license='Lesser GNU General Public License (LGPL)',
platforms='any that supports python 2.6.5',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: POSIX :: SunOS/Solaris',
'Operating System :: Unix',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 2.2',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Scientific/Engineering :: Education',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)