File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,3 +34,6 @@ __pycache__
3434
3535# JetBrains IDE
3636.idea /
37+
38+ # python
39+ dist /
Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ Python interface for unitree sdk2
88- numpy
99- opencv-python
1010## Install unitree_sdk2_python
11+
12+ ``` bash
13+ pip install unitree_sd2py
14+ ```
15+
16+ ### Installing from source
1117Execute the following commands in the terminal:
1218``` bash
1319cd ~
Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools" , " wheel" ]
3+ build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22
33setup (name = 'unitree_sdk2py' ,
4- version = '1.0.0 ' ,
5- author = 'Unitree ' ,
4+ version = '1.0.1 ' ,
5+ author = 'UnitreeRobotics ' ,
66 author_email = 'unitree@unitree.com' ,
7+ long_description = open ('README.md' ).read (),
8+ long_description_content_type = "text/markdown" ,
79 license = "BSD-3-Clause" ,
810 packages = find_packages (include = ['unitree_sdk2py' ,'unitree_sdk2py.*' ]),
911 description = 'Unitree robot sdk version 2 for python' ,
12+ project_urls = {
13+ "Source Code" : "https://github.com/unitreerobotics/unitree_sdk2_python" ,
14+ },
1015 python_requires = '>=3.8' ,
1116 install_requires = [
1217 "cyclonedds==0.10.2" ,
1318 "numpy" ,
1419 "opencv-python" ,
1520 ],
16- )
21+ )
You can’t perform that action at this time.
0 commit comments