-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.53 KB
/
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
31
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
setup(
name='tcaff',
version='0.1.0',
description='Multiple Object Tracking with Localization Error Elimination',
url='https://github.com/mit-acl/tcaff',
author='Mason Peterson, Parker Lusk',
author_email='[email protected], [email protected]',
license='MIT',
packages=find_packages(),
install_requires=['numpy',
'matplotlib',
'scipy',
'pyyaml',
'opencv-python',
'tqdm',
'motmetrics',
'yolov7-package',
'scikit-image',
'fastsam @ git+ssh://[email protected]/CASIA-IVA-Lab/FastSAM@4d153e9',
'robotdatapy @ git+ssh://[email protected]/mbpeterson70/robotdatapy@0e7853d',
'plot_utils @ git+ssh://[email protected]/mbpeterson70/plot_utils@fab133e',
],
extras_require={
'align': ['open3d==0.17.0',]
},
# classifiers=[
# 'Development Status :: 1 - Planning',
# 'Intended Audience :: Science/Research',
# 'License :: OSI Approved :: BSD License',
# 'Operating System :: POSIX :: Linux',
# 'Programming Language :: Python :: 2',
# 'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.4',
# 'Programming Language :: Python :: 3.5',
# ],
)