setup.py 651 B

12345678910111213141516171819202122
  1. from __future__ import absolute_import
  2. from os.path import join, dirname
  3. from setuptools import setup
  4. import fourier
  5. basepath = dirname(__file__)
  6. binpath = join(basepath, 'bin')
  7. setup(
  8. name = 'fourier',
  9. packages = ['fourier'],
  10. version = fourier.__version__,
  11. description = 'Fourier command line tools',
  12. long_description = 'You can use it for do maintenance stuff',
  13. scripts = [join(binpath, 'fourier')],
  14. install_requires=['pyaudio'],
  15. author = 'Gamaliel Espinoza M.',
  16. author_email = 'gamaliel.espinoza@gmail.com',
  17. url = 'https://git.miralo.xyz/AudioValid/fourier-install',
  18. keywords = ['image', 'icons', ''],
  19. classifiers = [],
  20. )