-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (51 loc) · 1.49 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
51
52
53
54
55
56
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from hobotrackers import __version__
import os.path
readme = ""
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, "README.rst")
if os.path.exists(readme_path):
with open(readme_path, "rb") as stream:
readme = stream.read().decode("utf8")
setup(
long_description=readme,
name="hobotrackers",
version=__version__,
description="Tools for tracking stuff",
python_requires="==3.*,>=3.6.0",
project_urls={"repository": "https://github.com/HoboVR-Labs/hobotrackers"},
author="Josh Miklos, Oleg Vorobiov",
author_email="[email protected], [email protected]",
license="GPL-2.0-only",
packages=[
"hobotrackers",
"hobotrackers.algorithms",
"hobotrackers.trackers",
"hobotrackers.util",
],
package_dir={"": "."},
package_data={},
install_requires=[
"displayarray>=1.3.0",
"numpy>=1.14.5",
],
extras_require={
"dev": [
"black==18.*,>=18.3.0.a0",
"coverage==4.*,>=4.5.0",
"mock==3.*,>=3.0.0",
"mypy==0.*,>=0.740.0",
"pydocstyle==4.*,>=4.0.0",
"pytest==5.2.1",
"sphinx==2.*,>=2.2.0",
"tox==3.*,>=3.14.0",
"tox-gh-actions==0.*,>=0.3.0",
"typing==3.7.4.1",
"wheel==0.*,>=0.30.0",
],
},
)