forked from kercre123/wirepod-vector-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
101 lines (86 loc) · 4 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Copyright (c) 2018 Anki, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License in the file LICENSE.txt or at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Anki/DDL Vector - Python SDK:
by cyb3rdog
## With support for Production, wire-pod and OSKR robots! ##
This is the extended fork of the original Anki Vector Python SDK.
For more information, please visit the project Github site: https://github.com/cyb3rdog/vector-python-sdk
The Vector SDK gives you direct access to Vector's unprecedented set of advanced sensors, AI capabilities, and robotics technologies including computer vision, intelligent mapping and navigation, and a groundbreaking collection of expressive animations.
It's powerful but easy to use, complex but not complicated, and versatile enough to be used across a wide range of domains including enterprise, research, and entertainment. Find out more at https://developer.anki.com
Vector SDK documentation: https://developer.anki.com/vector/docs/
Official developer forum: https://forums.anki.com/
Requirements:
* Python 3.7
* Python 3.8
* Python 3.9
* Python 3.10
* Python 3.11
"""
import os.path
import sys
from setuptools import setup
if sys.version_info < (3, 6, 1):
sys.exit('The Vector SDK requires Python 3.6.1 or later')
HERE = os.path.abspath(os.path.dirname(__file__))
def fetch_version():
"""Get the version from the package"""
with open(os.path.join(HERE, 'anki_vector', 'version.py')) as version_file:
versions = {}
exec(version_file.read(), versions)
return versions
VERSION_DATA = fetch_version()
VERSION = VERSION_DATA['__version__']
def get_requirements():
"""Load the requirements from requirements.txt into a list"""
reqs = []
with open(os.path.join(HERE, 'requirements.txt')) as requirements_file:
for line in requirements_file:
reqs.append(line.strip())
return reqs
setup(
name='wirepod_vector_sdk',
version=VERSION,
description="The Vector SDK is a connected vision- and character-based robotics platform for everyone.",
long_description=__doc__,
url='https://github.com/kercre123/wirepod-vector-python-sdk',
author='Anki, Inc',
author_email='[email protected]',
license='Apache License, Version 2.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.11',
],
zip_safe=True,
keywords='anki wire pod wire-pod vector robot robotics sdk ai vision'.split(),
packages=['anki_vector', 'anki_vector.camera_viewer', 'anki_vector.configure', 'anki_vector.messaging', 'anki_vector.opengl', 'anki_vector.reserve_control'],
package_data={
'anki_vector': ['LICENSE.txt', 'opengl/assets/*.obj', 'opengl/assets/*.mtl', 'opengl/assets/*.jpg',
'opengl/assets/LICENSE.txt']
},
install_requires=get_requirements(),
extras_require={
'3dviewer': ['PyOpenGL>=3.1'],
'docs': ['sphinx', 'sphinx_rtd_theme', 'sphinx_autodoc_typehints'],
'experimental': ['keras', 'scikit-learn', 'scipy', 'tensorflow'],
'test': ['pytest', 'requests', 'requests_toolbelt'],
}
)