forked from alexandrovteam/pyimzML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.54 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
from pyimzml import __version__
from setuptools import setup
setup(
name='pyimzML',
version=__version__,
description="Parser for conversion of imzML 1.1.0 files",
long_description="""
Parser for conversion of imzML 1.1.0 files.
See specification here: http://imzml.org/download/imzml/specifications_imzML1.1.0_RC1.pdf.
Outputs data as python lists and dicts.
All Python versions from 2.7 on are supported, but Python 3.3 or newer is
recommended for performance reasons.""",
# The project's main homepage.
url='https://github.com/alexandrovteam/pyimzML',
author='Dominik Fay',
author_email='[email protected]',
license='Apache 2.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: Apache Software License',
# 'Programming Language :: Python :: 2',
# 'Programming Language :: Python :: 2.6', # trouble with ElementTree
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='bioinformatics imaging mass spectrometry parser imzML',
# packages=find_packages(),
packages=['pyimzml'],
install_requires=['numpy','wheezy.template'],
)