-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
40 lines (35 loc) · 1.32 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
import os
from setuptools import setup
try:
descr = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
except IOError:
descr = ''
try:
from pypandoc import convert
descr = convert(descr, 'rst', format='md')
except ImportError:
pass
setup_parameters = dict(
name="pims_nd2",
version="1.1",
description="An image reader for nd2 (NIS Elements) multidimensional images",
author="Casper van der Wel",
install_requires=['pims>=0.3'],
author_email="[email protected]",
url="https://github.com/soft-matter/pims_nd2",
packages=['pims_nd2'],
include_package_data=True,
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"],
platforms=['MacOS X', 'Windows', 'Linux CentOs 6.5/7', 'Linux Debian 7/8'],
long_description=descr)
setup(**setup_parameters)