forked from alexandrovteam/pyimzML
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (35 loc) · 1.5 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
from pyimzml import __version__
from setuptools import setup, find_packages
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.
Python 3.3 or newer is recommended for performance reasons.""",
# The project's main homepage.
url='https://github.com/alexandrovteam/pyimzML',
author='Alexandrov Team, EMBL',
author_email='[email protected]',
license='Apache 2.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='bioinformatics imaging mass spectrometry parser imzML',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=['numpy', 'wheezy.template'],
)