forked from florisvb/multi_tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 731 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# not using this for now, because catkin not currently equipped to prevent egg folder
# from being created in this directory. TODO fix? necessary after "build"?
#from setuptools import setup
from distutils.core import setup
setup(
name='MultiTrackerAnalysis',
version='0.0.1',
author='Floris van Breugel',
author_email='floris@caltech.edu',
scripts=['multi_tracker_analysis/trajectory_editor'],
packages=['multi_tracker_analysis'],
license='BSD',
description='Analysis scripts for data collected with multi tracker',
long_description=open('README.md').read(),
)
# only supported by setuptools
#install_requires=['numpy', 'h5py', 'progressbar', 'pandas', 'scipy', \
# 'sympy', 'pyqtgraph'],