forked from mk-michal/deep_sort
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 746 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 746 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
25
26
from setuptools import setup
import os.path
# Change to the directory of this file before the build
os.chdir(os.path.dirname(os.path.realpath(__file__)))
# Build setup
setup(
name='deep_sort',
version='1.3.0',
packages=['deep_sort', 'deep_sort_tools'],
license='GNU General Public License v3 (GPLv3)',
author='Nicolai Wojke and Alex Bewley',
url='https://github.com/mk-michal/deep_sort',
description='Simple Online and Realtime Tracking with a Deep Association Metric (Deep SORT)',
setup_requires=[
'setuptools>=18.0'
],
package_data={
'deep_sort': [
'resources/*',
]
},
install_requires=[], # requirements.txt is included
include_package_data=True,
)