forked from soft-matter/pims
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 811 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
from __future__ import print_function
import os
from setuptools import setup
import versioneer
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",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Python Image Sequence",
author="PIMS Contributors",
install_requires=['slicerator>=0.9.7', 'six>=1.8', 'numpy>=1.7'],
author_email="[email protected]",
url="https://github.com/soft-matter/pims",
packages=['pims',
'pims.utils',
'pims.tests'],
long_description=descr)
setup(**setup_parameters)