setup.py 481 B

1234567891011121314151617181920
  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 setuptools import setup, find_packages
  7. setup(
  8. name='example-tasks',
  9. version='1.0',
  10. description='Tasks for my project',
  11. packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
  12. zip_safe=False,
  13. install_requires=[
  14. 'celery>=3.0',
  15. # 'requests',
  16. ],
  17. )