setup.py 748 B

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