setup.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. url='http://github.com/example/celery-tasks',
  11. author='Ola A. Normann',
  12. author_email='author@example.com',
  13. keywords='our celery integration',
  14. version='1.0',
  15. description='Tasks for my project',
  16. long_description=__doc__,
  17. license='BSD',
  18. packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
  19. test_suite='nose.collector',
  20. zip_safe=False,
  21. install_requires=[
  22. 'celery>=4.0',
  23. # 'requests',
  24. ],
  25. classifiers=[
  26. 'Development Status :: 5 - Production/Stable',
  27. 'License :: OSI Approved :: BSD License',
  28. 'Programming Language :: Python :: 2',
  29. 'Programming Language :: Python :: 2.7',
  30. 'Programming Language :: Python :: 3',
  31. 'Programming Language :: Python :: 3.5',
  32. 'Programming Language :: Python :: Implementation :: CPython',
  33. 'Programming Language :: Python :: Implementation :: PyPy',
  34. 'Operating System :: OS Independent',
  35. ],
  36. )