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 packages=[
00008 'rospeex_core',
00009 'rospeex_core.spi',
00010 'rospeex_core.sr',
00011 'rospeex_core.sr.base',
00012 'rospeex_core.sr.google',
00013 'rospeex_core.sr.microsoft',
00014 'rospeex_core.sr.nict',
00015 'rospeex_core.ss'
00016 ],
00017 package_dir={'': 'src'}
00018 )
00019
00020 setup(**setup_args)