Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,8 @@ __pycache__
.idea/

# python
dist/
dist/

# wheel
build/
*.whl
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include unitree_sdk2py/utils/lib/*.so
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
long_description_content_type="text/markdown",
license="BSD-3-Clause",
packages=find_packages(include=['unitree_sdk2py','unitree_sdk2py.*']),
include_package_data=True,
description='Unitree robot sdk version 2 for python',
project_urls={
"Source Code": "https://github.com/unitreerobotics/unitree_sdk2_python",
Expand Down
3 changes: 1 addition & 2 deletions unitree_sdk2py/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from . import idl, utils, core, rpc, go2, b2
from . import idl, utils, core, rpc, go2

__all__ = [
"idl"
"utils"
"core",
"rpc",
"go2",
"b2",
]