forked from mirror/joycontrol
17 lines
466 B
Python
17 lines
466 B
Python
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(name='joycontrol',
|
|
version='0.14',
|
|
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', 'aioconsole', 'dbus-python', 'crc8'
|
|
]
|
|
)
|
|
|