|
1 | 1 | #!/usr/bin/python
|
2 | 2 | # -*- coding: utf-8 -*-
|
| 3 | + |
3 | 4 | import setuptools
|
4 |
| -import sys |
5 | 5 | import beams
|
6 |
| -import os |
7 |
| -import unittest |
| 6 | + |
8 | 7 |
|
9 | 8 | def main():
|
10 | 9 |
|
11 |
| - install_requires = open('requirements.txt').read().splitlines() |
| 10 | + install_requires = open("requirements.txt").read().splitlines() |
12 | 11 |
|
13 | 12 | setuptools.setup(name="beams",
|
14 | 13 | version=beams.__version__,
|
15 | 14 | description="Python package to annotate LC-MS and DIMS data",
|
16 |
| - long_description=open('README.rst').read(), |
| 15 | + long_description=open("README.rst").read(), |
17 | 16 | author="Ralf Weber",
|
18 | 17 |
|
19 | 18 | url="https://github.com/computational-metabolomics/beams",
|
20 | 19 | license="GPLv3",
|
21 |
| - platforms=['Windows, UNIX'], |
22 |
| - keywords=['Metabolomics', 'Mass spectrometry', 'Liquid-Chromatography Mass Spectrometry', 'Metabolite Annotation'], |
| 20 | + platforms=["Windows, UNIX"], |
| 21 | + keywords=["Metabolomics", "Mass spectrometry", "Liquid-Chromatography Mass Spectrometry", "Metabolite Annotation"], |
23 | 22 | packages=setuptools.find_packages(),
|
24 |
| - test_suite='tests.suite', |
| 23 | + test_suite="tests.suite", |
25 | 24 | install_requires=install_requires,
|
26 | 25 | include_package_data=True,
|
27 | 26 | classifiers=[
|
28 |
| - "Programming Language :: Python :: 2", |
29 |
| - "Programming Language :: Python :: 2.7", |
30 |
| - "Programming Language :: Python :: 3", |
31 |
| - "Programming Language :: Python :: 3.6", |
32 |
| - "Topic :: Scientific/Engineering :: Bio-Informatics", |
33 |
| - "Topic :: Scientific/Engineering :: Chemistry", |
34 |
| - "Topic :: Utilities", |
35 |
| - "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
36 |
| - "Operating System :: OS Independent", |
| 27 | + "Programming Language :: Python :: 2", |
| 28 | + "Programming Language :: Python :: 2.7", |
| 29 | + "Programming Language :: Python :: 3", |
| 30 | + "Programming Language :: Python :: 3.6", |
| 31 | + "Topic :: Scientific/Engineering :: Bio-Informatics", |
| 32 | + "Topic :: Scientific/Engineering :: Chemistry", |
| 33 | + "Topic :: Utilities", |
| 34 | + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
| 35 | + "Operating System :: OS Independent", |
37 | 36 | ],
|
38 | 37 | entry_points={
|
39 |
| - 'console_scripts': [ |
40 |
| - 'beams = beams.__main__:main' |
41 |
| - ] |
| 38 | + "console_scripts": [ |
| 39 | + "beams = beams.__main__:main" |
| 40 | + ] |
42 | 41 | }
|
43 | 42 | )
|
44 | 43 |
|
|
0 commit comments