setup.py 540 B

12345678910111213141516171819202122
  1. """
  2. Example setup file for a project using Celery.
  3. This can be used to distribute your tasks and worker
  4. as a Python package, on PyPI or on your own private package index.
  5. """
  6. from __future__ import absolute_import, unicode_literals
  7. from setuptools import setup, find_packages
  8. setup(
  9. name='example-tasks',
  10. version='1.0',
  11. description='Tasks for my project',
  12. packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
  13. zip_safe=False,
  14. install_requires=[
  15. 'celery>=4.0',
  16. # 'requests',
  17. ],
  18. )