fixed structure of the package
added background send thread
added close function for terminating the background thread
This commit is contained in:
Florian Kaiser
2020-11-29 12:49:16 +01:00
parent 78a49d0ee3
commit a55fe59d2b
6 changed files with 95 additions and 79 deletions

View File

@@ -6,14 +6,13 @@ with open("README.md", "r") as fh:
setup(
name='pydualsense',
version='0.0.1',
description='control your dualsense controller with python',
version='0.0.4',
description='control your DualSense (PS5) controller with python',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/flok/pydualsense',
author='Florian Kaiser',
author_email='shudson@anl.gov',
license='BSD 2-clause',
license='MIT License',
packages=setuptools.find_packages(),
install_requires=['hid>=1.0.4']
)