-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 901 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
from distutils.core import setup
setup(
name='tracker',
python_requires='>=3.8',
author='Martin Privat',
version='0.6.0',
packages=['tracker','tracker.animal','tracker.body','tracker.eyes','tracker.multifish','tracker.tail','tracker.tests'],
license='Creative Commons Attribution-Noncommercial-Share Alike license',
description='tracking zebrafish larvae',
long_description=open('README.md').read(),
install_requires=[
"numpy",
"scipy",
"scikit-learn",
"opencv-python",
"PyQt5",
"tqdm",
"numba",
"video_tools @ git+https://github.com/ElTinmar/video_tools.git@main",
"image_tools @ git+https://github.com/ElTinmar/image_tools.git@main",
"qt_widgets @ git+https://github.com/ElTinmar/qt_widgets.git@main",
"geometry @ git+https://github.com/ElTinmar/geometry.git@main"
]
)