Python wrapper for Xiph.org rnnoise ( https://gitlab.xiph.org/xiph/rnnoise )
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 713B

123456789101112131415161718192021
  1. from setuptools import setup, Extension
  2. setup(name = 'pyrnnoise',
  3. version = '0.1',
  4. test_suite='test_pyrnnoise',
  5. description="Python wrapper for Xiph.org rnnoise algorithm implementation",
  6. long_description="file: README.md",
  7. author = "Yann Weber",
  8. author_email = "pyrnnoise@yannweb.net",
  9. url = "https://git.yannweb.net/yannweb/pyrnnoise",
  10. license = "BSD-3-Clause",
  11. keywords = ["rnnoise", "noise reduction", "audio processing"],
  12. ext_modules = [
  13. Extension(
  14. name="rnnoise",
  15. libraries=['rnnoise'],
  16. sources=["pyrnnoise.c"],
  17. extra_compile_args=["-Wall", "-Werror"],
  18. )
  19. ]
  20. );