setup.py 595 B

123456789101112131415161718
  1. from setuptools import setup
  2. import glob
  3. setup(
  4. name = 'jack-plumber',
  5. version = '0.1',
  6. description = 'Automatically rename and connect ports registered in JACK Audio Server',
  7. author = 'Fabian Peter Hammerle',
  8. author_email = 'fabian.hammerle@gmail.com',
  9. url = 'https://github.com/fphammerle/jack-plumber',
  10. download_url = 'https://github.com/fphammerle/jack-plumber/tarball/0.1',
  11. keywords = ['audio', 'jack'],
  12. classifiers = [],
  13. scripts = glob.glob('scripts/*'),
  14. install_requires = ['jacker>=0.3.1', 'ioex>=0.3'],
  15. tests_require = ['pytest']
  16. )