File size: 226 Bytes
37a92a9 | 1 2 3 4 5 6 7 8 9 10 | 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"],
)
|