forked from soft-matter/pims_nd2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 976 Bytes
/
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
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="0.3",
description="ND2SDK wrapper for PIMS",
author="Casper van der Wel",
install_requires=['pims>=0.3'],
author_email="caspervdw@gmail.com",
url="https://github.com/soft-matter/pims_nd2",
download_url="https://github.com/soft-matter/pims_nd2/tarball/0.3",
packages=['pims_nd2'],
include_package_data=True,
platforms=[
# 'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows Vista',
'Operating System :: POSIX :: Linux',
],
long_description=descr)
setup(**setup_parameters)