mirror of
https://github.com/cmusphinx/pocketsphinx.git
synced 2026-05-17 12:20:35 +00:00
10 lines
226 B
Python
10 lines
226 B
Python
from skbuild import setup
|
|
from setuptools import find_packages
|
|
|
|
setup(
|
|
packages=find_packages('cython', exclude=["test"]),
|
|
package_dir={"": "cython"},
|
|
cmake_languages=["C"],
|
|
install_requires=["sounddevice"],
|
|
)
|