-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 821 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
"""Setup file."""
from setuptools import setup, find_packages
from setuptools.command.install import install
def readme():
with open('README.rst') as f:
return f.read()
setup( name='motrack',
version='0.1',
description='Object tracking for Biologists',
long_description=readme(),
keywords=['motion tracking', 'laboratory', 'mouse'],
classifiers = [],
url='https://github.com/EIN-lab/motion-tracking',
download_url='https://github.com/EIN-lab/motion-tracking/archive/master.zip',
author='Martin Holub',
author_email='mholub.ethz@gmail.com',
license='MIT',
packages=find_packages(),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
include_package_data=True,
zip_safe=False)