-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (41 loc) · 1.47 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
import sys
import nmrml2isa
setup(
name='nmrml2isa',
version=nmrml2isa.__version__,
packages=find_packages(),
py_modules=['nmrml2isa'],
author=nmrml2isa.__author__,
author_email=nmrml2isa.__email__,
description="nmrml2isa - nmrML to ISA-Tab parsing tool",
long_description=open('README.rst').read(),
install_requires=open('requirements.txt').read().splitlines(),
include_package_data=True,
url='http://github.com/althonos/nmrml2isa',
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Text Processing :: Markup :: XML",
"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': [
'nmrml2isa = nmrml2isa.parsing:run',
],
},
license="GPLv3",
keywords=['Metabolomics', 'NMR', 'Nuclear Magnetic Resonance', 'ISA Tab', 'nmrML', 'metabolites', 'parsing'],
)