Go to the documentation of this file.00001
00002
00003 from setuptools import setup
00004 from catkin_pkg.python_setup import generate_distutils_setup
00005
00006 setup_args = generate_distutils_setup(
00007 scripts=[
00008 'scripts/rospeex_spi.py',
00009 'scripts/rospeex_sr.py',
00010 'scripts/rospeex_ss.py'
00011 ],
00012 packages=[
00013 'rospeex_core',
00014 'rospeex_core.sr',
00015 'rospeex_core.ss',
00016 'rospeex_core.spi'
00017 ],
00018 package_dir={'':'src'},
00019 install_requires=['requests>=2.5.0']
00020 )
00021
00022 setup(**setup_args)