forked from pollen-robotics/reachy-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (31 loc) · 899 Bytes
/
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
"""Setup config file."""
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='reachy-sdk',
version='0.7.0',
packages=find_packages(exclude=['tests']),
install_requires=[
'numpy',
'opencv-python',
'reachy-sdk-api>=0.7.0',
'grpcio>=1.37',
'protobuf>3',
'pyquaternion',
'scipy',
'mobile-base-sdk',
],
extras_require={
'doc': ['sphinx'],
},
author='Pollen Robotics',
author_email='[email protected]',
url='https://github.com/pollen-robotics/reachy-sdk',
description='Python Reachy SDK.',
long_description=long_description,
long_description_content_type='text/markdown',
)