setup.py 649 B

1234567891011121314151617181920212223
  1. from distutils.core import setup, Extension
  2. import glob
  3. setup(
  4. name = 'jacker',
  5. version = '0.3.1',
  6. description = 'Python bindings for the JACK Audio Server C API',
  7. author = 'Fabian Peter Hammerle',
  8. author_email = 'fabian.hammerle@gmail.com',
  9. url = 'https://github.com/fphammerle/jacker',
  10. download_url = 'https://github.com/fphammerle/jacker/tarball/0.3.1',
  11. keywords = ['audio', 'jack'],
  12. classifiers = [],
  13. ext_modules = [
  14. Extension(
  15. 'jack',
  16. sources = glob.glob('*.c'),
  17. libraries = ['jack'],
  18. ),
  19. ],
  20. tests_require = ['pytest', 'mock'],
  21. )