Files
joycontrol/setup.py
T
2020-02-02 14:56:00 +09:00

17 lines
429 B
Python

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