Files
joycontrol/setup.py
T
2020-02-05 16:37:27 +09:00

17 lines
429 B
Python

from setuptools import setup, find_packages
setup(name='joycontrol',
version='0.11',
author='Robert Martin',
author_email='martinro@informatik.hu-berlin.de',
description='Emulate Nintendo Switch Controllers over Bluetooth',
packages=find_packages(),
package_data={'joycontrol': ['profile/sdp_record_hid.xml']},
zip_safe=False,
install_requires=[
'hid'
]
)