File indexing completed on 2024-10-13 04:50:07
0001 """ Install the mycroft_ptt_client package 0002 """ 0003 from setuptools import setup 0004 0005 setup( 0006 name='mycroft_ptt_client', 0007 version='0.0.1', 0008 url='https://github.com/AIIX/mycroft_ptt_client', 0009 keywords='mycroft ptt daemon client', 0010 packages=['mycroft_ptt_client'], 0011 install_requires=['python-libinput', 'mycroft-messagebus-client'], 0012 include_package_data=True, 0013 license='Apache', 0014 author='Aditya Mehra', 0015 author_email='aix.m@outlook.com', 0016 description='Mycroft Push-To-Talk Client', 0017 entry_points={ 0018 'console_scripts': [ 0019 'mycroft_ptt_client=mycroft_ptt_client.__main__:main', 0020 ] 0021 } 0022 )