-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 836 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
from __future__ import print_function
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="clustertracking",
version='0.2',
description="An algorithm to track overlapping features in video images",
author="Casper van der Wel",
install_requires=['numpy', 'scipy', 'pandas>=0.17.0',
'trackpy>=0.3.0', 'pims>=0.3.3'],
author_email="[email protected]",
url="https://github.com/caspervdw/clustertracking",
packages=['clustertracking',
'clustertracking.tests'],
long_description=descr)
setup(**setup_parameters)