forked from cheind/py-motmetrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 797 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
26
27
"""py-motmetrics - metrics for multiple object tracker (MOT) benchmarking.
Christoph Heindl, 2017
https://github.com/cheind/py-motmetrics
"""
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='motmetrics',
version=open('motmetrics/__init__.py').readlines()[-1].split()[-1].strip('\''),
description='Metrics for multiple object tracker benchmarking.',
author='Christoph Heindl',
url='https://github.com/cheind/py-motmetrics',
license='MIT',
install_requires=required,
packages=['motmetrics', 'motmetrics.tests', 'motmetrics.apps'],
include_package_data=True,
keywords='tracker MOT evaluation metrics compare'
)