-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
43 lines (36 loc) · 1.39 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
#!/usr/bin/env python
from os.path import join, dirname, abspath, isfile
from distutils.core import setup
from setuptools import find_packages
this_directory = abspath(dirname(__file__))
with open(join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
install_requires = []
if isfile(join(this_directory, "requirements.txt")):
with open(join(this_directory, "requirements.txt"), encoding='utf-8') as f:
install_requires = f.readlines()
__version__ = "0.0.0"
exec(open(join(dirname(__file__), 'vot', 'version.py')).read())
setup(name='vot-toolkit',
version=__version__,
description='Perform visual object tracking experiments and analyze results',
long_description=long_description,
long_description_content_type='text/markdown',
author='Luka Cehovin Zajc',
author_email='[email protected]',
url='https://github.com/votchallenge/toolkit',
packages=find_packages(),
install_requires=install_requires,
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
],
python_requires='>=3.7',
entry_points={
'console_scripts': ['vot=vot.utilities.cli:main'],
},
)