setup.py 1.2 KB

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