setup.py 769 B

123456789101112131415161718192021222324252627282930313233
  1. from setuptools import setup
  2. from subprocess import call
  3. import sys
  4. import os
  5. script_path = os.path.dirname(os.path.realpath(__file__))
  6. print script_path
  7. os.chdir(script_path)
  8. setup(name='api_clients',
  9. version='1.0',
  10. description='Airtime API Client',
  11. url='http://github.com/sourcefabric/Airtime',
  12. author='sourcefabric',
  13. license='AGPLv3',
  14. packages=['api_clients'],
  15. scripts=[],
  16. install_requires=[
  17. # 'amqplib',
  18. # 'anyjson',
  19. # 'argparse',
  20. 'configobj'
  21. # 'docopt',
  22. # 'kombu',
  23. # 'mutagen',
  24. # 'poster',
  25. # 'PyDispatcher',
  26. # 'pyinotify',
  27. # 'pytz',
  28. # 'wsgiref'
  29. ],
  30. zip_safe=False,
  31. data_files=[])