-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
50 lines (47 loc) · 1.99 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
#!/usr/bin/env python
from setuptools import setup
import os
version_txt_path = os.path.join(os.path.dirname(__file__), "pyqms", "version.txt")
with open(version_txt_path, "r") as version_file:
pyqms_version = version_file.readline().strip()
setup(
name="pyqms",
version=pyqms_version,
packages=["pyqms"],
package_dir={"pyqms": "pyqms"},
description="pyQms - Python module for accurate quantification of mass spectrometry data",
package_data={
"pyqms": [
"version.txt",
"kb/ext/unimod.xml",
]
},
install_requires=["pymzml", "openpyxl", "chemical_composition"],
long_description="pyQms enables universal and accurate quantification of mass spectrometry data",
author="Johannes Leufken, Anna Niehues, L. Peter Sarin, Florian Wessels, Michael Hippler, Sebastian A. Leidel and Christian Fufezan",
author_email="[email protected]",
url="https://github.com/pyQms/pyqms",
license="The MIT License (MIT)",
platforms="any that supports python 3.4",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: SunOS/Solaris",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Physics",
],
)