forked from mirror/joycontrol
15 lines
361 B
Python
15 lines
361 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(),
|
|
zip_safe=False,
|
|
install_requires=[
|
|
# TODO
|
|
]
|
|
)
|