speech_recognition
setup.py
Go to the documentation of this file.
1
#!/usr/bin/env python
2
3
from
distutils.core
import
setup
4
from
catkin_pkg.python_setup
import
generate_distutils_setup
5
6
d = generate_distutils_setup(
7
# # don't do this unless you want a globally visible script
8
# scripts=['bin/myscript'],
9
packages=[
'speech_recognition'
],
10
package_dir={
''
:
'src'
}
11
)
12
13
setup
(**d)
setup
Definition:
setup.py:1
Generated on Wed Apr 16 2025 04:36:08 for speech_recognition by
1.8.17