setup.py 867 B

123456789101112131415161718192021222324252627
  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==5.1.1',
  15. 'firebase_admin==3.2', 'mutagen==1.43',
  16. 'requests>=2.18', 'cachetools==3.1.1', 'google-auth==1.19.1',
  17. 'pyopenssl==19.0', 'google-api-python-client', 'httplib2'
  18. ],
  19. author = 'Gamaliel Espinoza M.',
  20. author_email = 'gamaliel.espinoza@gmail.com',
  21. url = 'https://git.miralo.xyz/AudioValid/fourier-ondemand',
  22. keywords = ['image', 'icons', ''],
  23. classifiers = [],
  24. )