Update setup.py

This commit is contained in:
Flo
2021-01-10 14:53:56 +01:00
committed by GitHub
parent 32f9042abb
commit 3a14ab3e7a

View File

@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
setup( setup(
name='pydualsense', name='pydualsense',
version='0.5.0', version='0.5.1',
description='use your DualSense (PS5) controller with python', description='use your DualSense (PS5) controller with python',
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
@@ -14,5 +14,5 @@ setup(
author='Florian K', author='Florian K',
license='MIT License', license='MIT License',
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
install_requires=['hidapi-usb'] install_requires=['hidapi-usb', 'cffi']
) )