Skip to content

Commit ac679a0

Browse files
committed
v1.0.1 support for Pypi
1 parent 463c1fc commit ac679a0

4 files changed

Lines changed: 20 additions & 3 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,6 @@ __pycache__
3434

3535
# JetBrains IDE
3636
.idea/
37+
38+
# python
39+
dist/

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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
1117
Execute the following commands in the terminal:
1218
```bash
1319
cd ~

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel"]
3+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
from setuptools import setup, find_packages
22

33
setup(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+
)

0 commit comments

Comments
 (0)