-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
50 lines (40 loc) · 1.25 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
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
"""
Created on Sun May 10 18:11:21 2020
@author: acer4755g
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
# In[]
dirPath = path.abspath(path.dirname(__file__))
# In[]
long_desc = """"IOUTracker implements a tracking algorithm or method to track
# objects based on their Intersection-Over-Union (IOU) information across the
# consecutive frames."""
with open(path.join(dirPath, "README.md"), encoding='utf-8') as fin:
long_desc = fin.read()
# In[]
pkgs = []
with open(path.join(dirPath, "environ", "requirements.txt"), encoding='utf-8') as fin:
for line in fin:
pkgs.append(line.strip().replace("==", ">="))
# In[]
setup(
name="ioutracker",
version="1.2.1",
description=long_desc,
author="JianKai Wang",
author_email="[email protected]",
license='MIT',
url="https://github.com/jiankaiwang/ioutracker",
classifiers=[
# refer to https://pypi.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='''tracking,ioutracker''',
install_requires=pkgs,
packages=find_packages(exclude=[])
)