-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
48 lines (41 loc) · 1.64 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
import beamspy
def main():
install_requires = open("requirements.txt").read().splitlines()
setuptools.setup(name="beamspy",
version=beamspy.__version__,
description="Putative annotation of metabolites for mass spectrometry-based metabolomics datasets.",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
author="Ralf Weber",
author_email="[email protected]",
url="https://github.com/computational-metabolomics/beamspy",
license="GPLv3",
platforms=["Windows, UNIX"],
keywords=["Metabolomics", "Mass spectrometry", "Liquid-Chromatography Mass Spectrometry", "Metabolite Annotation"],
packages=setuptools.find_packages(),
python_requires=">=3.8",
test_suite="tests.suite",
install_requires=install_requires,
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"beamspy = beamspy.__main__:main"
]
}
)
if __name__ == "__main__":
main()