forked from pymzml/pymzML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·63 lines (61 loc) · 2.08 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python3
from setuptools import setup
import os
version_path = os.path.join(
os.path.dirname(__file__),
'pymzml',
'version.txt'
)
with open(version_path, 'r') as version_file:
pymzml_version = version_file.read().strip()
setup(
name = 'pymzml',
version = pymzml_version,
packages = ['pymzml', 'pymzml.file_classes', 'pymzml.utils'],
package_dir = {'pymzml': 'pymzml'},
package_data = {
'pymzml': [
'version.txt',
'obo/*.obo.gz'
]
},
python_requires = '>=3.4.0',
install_requires = [
'numpy >= 1.8.0',
'regex',
],
extras_require = {
'full': [
'plotly<5.0',
'pynumpress>=0.0.4',
'ms_deisotope',
],
'plot': ['plotly<5.0'],
'pynumpress': ['pynumpress>=0.0.4'],
'deconvolution': ['ms_deisotope']
},
description = 'high-throughput mzML parsing',
long_description = 'pymzML - python module for mzML parsing',
author = 'M. Koesters, J. Leufken, S. Schulze, K. Sugimoto, R. Zahedi, M. Hippler and C. Fufezan',
author_email = '[email protected]',
url = 'http://pymzml.github.com',
license = 'The MIT license',
platforms = 'any that supports python 3.4',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: POSIX :: SunOS/Solaris',
'Operating System :: Unix',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
]
)