setup.py 565 B

12345678910111213141516171819202122
  1. from distutils.core import setup, Extension
  2. import glob
  3. setup(
  4. name = 'jacker',
  5. version = '0.2.1',
  6. description = 'JACK API for Python',
  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.2.1',
  11. keywords = [],
  12. classifiers = [],
  13. ext_modules = [
  14. Extension(
  15. 'jack',
  16. sources = glob.glob('*.c'),
  17. libraries = ['jack'],
  18. )
  19. ],
  20. )