-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.27 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
try:
from setuptools import setup
print "using setuptools"
except ImportError:
from distutils.core import setup
print "using setup from distutil"
config = {
'name': 'glyxtoolms',
'description': 'glyxtoolms - python tools for glycopeptide analysis with OpenMS',
'long_description': """ glyXtoolMS provides a) scripts for glycopeptide analysis
within the OpenMS proteomics framework (using the TOPPAS pipeline
engine) and a visulization / evaluation tool for further manual analysis of the results.
Source code available under https://github.com/glyXera/glyXtoolMS""",
'license': 'GPL-3.0',
'version': '0.1.5.5',
'author': 'Markus Pioch',
'author_email': '[email protected]',
'python_requires':'>=2.6, <3',
'install_requires': ['numpy','pyopenms','lxml','canvasvg','configparser','pyperclip','xlwt'],
'packages': ['glyxtoolms', 'glyxtoolms.gui','glyxtoolms.TOPP'],
'package_data':{'glyxtoolms.gui': ['resources/*.gif','resources/isotope_confidence.pickle'] },
'scripts': [],
'entry_points': {
'gui_scripts': [
'glyxtoolms = glyxtoolms.gui.__main__:main']
},
'keywords': 'glycan glycopeptide glycoproteomics openms analysis',
'include_package_data':True
}
setup(**config)