-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (33 loc) · 1.08 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
# _*_ coding: UTF-8 _*_
import os
from setuptools import setup, find_packages
__all__ = ['setup']
def read_file(filename):
path = os.path.join(os.path.abspath(os.path.dirname(__file__)), filename)
try:
return open(path).readlines()
except IOError:
return ''
def get_readme():
for filename in ('README', 'README.rst', 'README.md'):
if os.path.exists(filename):
return read_file(filename).join(os.linesep)
return ''
setup(
name='people-tracker-yolo',
version='0.0.0',
description='People tracker using Yolo and Deep Sort algorithm.',
long_description_content_type='text/markdown',
scripts=[],
url='https://github.com/edgebr/people-detector-yolo',
zip_safe=True,
python_requires='>=3.8',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'Topic :: System :: Monitoring',
],
)