setup.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import os
  4. import codecs
  5. try:
  6. from setuptools import setup, find_packages
  7. from setuptools.command.test import test
  8. except ImportError:
  9. raise
  10. from ez_setup import use_setuptools
  11. use_setuptools()
  12. from setuptools import setup, find_packages # noqa
  13. from setuptools.command.test import test # noqa
  14. if os.path.exists("README.rst"):
  15. long_description = codecs.open("README.rst", "r", "utf-8").read()
  16. else:
  17. long_description = "See http://pypi.python.org/pypi/celery"
  18. setup(
  19. name="celery-with-redis",
  20. version='2.4.0',
  21. description="Bundle that installs the dependencies for Celery and Redis",
  22. author="Celery Project",
  23. author_email="bundles@celeryproject.org",
  24. url="http://celeryproject.org",
  25. platforms=["any"],
  26. license="BSD",
  27. packages=[],
  28. zip_safe=False,
  29. install_requires=[
  30. "celery>=2.4.0,<3.0.0",
  31. "redis>=2.4.4",
  32. ],
  33. classifiers=[
  34. "Development Status :: 5 - Production/Stable",
  35. "Operating System :: OS Independent",
  36. "License :: OSI Approved :: BSD License",
  37. "Topic :: Software Development :: Libraries :: Python Modules",
  38. "Programming Language :: Python",
  39. "Programming Language :: Python :: 2",
  40. "Programming Language :: Python :: 2.5",
  41. "Programming Language :: Python :: 2.6",
  42. "Programming Language :: Python :: 2.7",
  43. "Programming Language :: Python :: 3",
  44. ],
  45. long_description=long_description)