Skip to content

Commit

Permalink
Add support for SpacePilot
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubAndrysek committed Oct 15, 2022
1 parent 6b8faca commit 7c6d565
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
all: release

release:
echo "Package build + upload to pypi.org"
python3 setup.py sdist bdist_wheel

twine check dist/*

twine upload --repository pypi dist/*

delete:
rm -rf dist/*
rm -rf build/*
rm -rf *.egg-info
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Control a [robot](https://roboruka.robotickytabor.cz/) with a Space Mouse
* SpaceMouse Wireless
* 3Dconnexion Universal Receiver
* SpaceMouse Compact
* SpacePilot
* SpacePilot Pro
* [Add more devices](https://github.com/johnhw/pyspacenavigator/issues/1)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name='pyspacemouse',
version='1.0.4',
version='1.0.5',
author='Jakub Andrýsek',
author_email='[email protected]',
description='Multiplatform Python interface to the 3DConnexion Space Mouse - forked from pyspacenavigator',
Expand Down

0 comments on commit 7c6d565

Please sign in to comment.