Files
joycontrol/setup.py
T
Robert Martin eac7ca0a6f version
2020-02-11 22:16:59 +09:00

17 lines
429 B
Python

from setuptools import setup, find_packages
setup(name='joycontrol',
version='0.12',
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'
]
)