-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 922 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (23 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
setup(
name='tracker',
python_requires='>=3.8',
author='Martin Privat',
version='0.14.8',
packages=['tracker','tracker.animal','tracker.body','tracker.eyes','tracker.multifish','tracker.tail', 'tracker.singlefish', 'tracker.head_embedded'],
license='Creative Commons Attribution-Noncommercial-Share Alike license',
description='tracking zebrafish larvae',
long_description=open('README.md').read(),
install_requires=[
"numpy",
"scipy",
"opencv-python-headless",
"tqdm",
"numba",
"filterpy",
"video_tools @ git+https://github.com/ElTinmar/video_tools.git@v0.6.11",
"image_tools @ git+https://github.com/ElTinmar/image_tools.git@v0.9.7",
"geometry @ git+https://github.com/ElTinmar/geometry.git@v0.3.1",
"kalman @ git+https://github.com/ElTinmar/Kalman.git@v0.1.7"
]
)