setup.py 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import os
  4. import sys
  5. import codecs
  6. import platform
  7. if sys.version_info < (2, 5):
  8. raise Exception("Celery requires Python 2.5 or higher.")
  9. try:
  10. orig_path = sys.path[:]
  11. for path in (os.path.curdir, os.getcwd()):
  12. try:
  13. sys.path.remove(path)
  14. except ValueError:
  15. pass
  16. try:
  17. import celery.app
  18. import imp
  19. import shutil
  20. _, task_path, _ = imp.find_module("task", celery.app.__path__)
  21. if task_path.endswith("/task"):
  22. print("- force upgrading previous installation")
  23. print(" - removing %r package..." % task_path)
  24. try:
  25. shutil.rmtree(os.path.abspath(task_path))
  26. except Exception:
  27. sys.stderr.write("Couldn't remove %r: %r\n" % (
  28. task_path, sys.exc_info[1]))
  29. finally:
  30. sys.path[:] = orig_path
  31. except ImportError:
  32. pass
  33. try:
  34. from setuptools import setup, find_packages
  35. from setuptools.command.test import test
  36. except ImportError:
  37. raise
  38. from ez_setup import use_setuptools
  39. use_setuptools()
  40. from setuptools import setup, find_packages # noqa
  41. from setuptools.command.test import test # noqa
  42. NAME = "celery"
  43. entrypoints = {}
  44. extra = {}
  45. # -*- Classifiers -*-
  46. classes = """
  47. Development Status :: 5 - Production/Stable
  48. License :: OSI Approved :: BSD License
  49. Topic :: System :: Distributed Computing
  50. Topic :: Software Development :: Object Brokering
  51. Intended Audience :: Developers
  52. Intended Audience :: Information Technology
  53. Intended Audience :: Science/Research
  54. Environment :: No Input/Output (Daemon)
  55. Environment :: Console
  56. Programming Language :: Python
  57. Programming Language :: Python :: 2
  58. Programming Language :: Python :: 2.5
  59. Programming Language :: Python :: 2.6
  60. Programming Language :: Python :: 2.7
  61. Programming Language :: Python :: Implementation :: CPython
  62. Programming Language :: Python :: Implementation :: PyPy
  63. Programming Language :: Python :: Implementation :: Jython
  64. Operating System :: OS Independent
  65. Operating System :: POSIX
  66. Operating System :: Microsoft :: Windows
  67. Operating System :: MacOS :: MacOS X
  68. """
  69. classifiers = [s.strip() for s in classes.split('\n') if s]
  70. # -*- Python 3 -*-
  71. is_py3k = sys.version_info >= (3, 0)
  72. if is_py3k:
  73. extra.update(use_2to3=True)
  74. # -*- Distribution Meta -*-
  75. import re
  76. re_meta = re.compile(r'__(\w+?)__\s*=\s*(.*)')
  77. re_vers = re.compile(r'VERSION\s*=\s*\((.*?)\)')
  78. re_doc = re.compile(r'^"""(.+?)"""')
  79. rq = lambda s: s.strip("\"'")
  80. def add_default(m):
  81. attr_name, attr_value = m.groups()
  82. return ((attr_name, rq(attr_value)), )
  83. def add_version(m):
  84. v = list(map(rq, m.groups()[0].split(", ")))
  85. return (("VERSION", ".".join(v[0:3]) + "".join(v[3:])), )
  86. def add_doc(m):
  87. return (("doc", m.groups()[0]), )
  88. pats = {re_meta: add_default,
  89. re_vers: add_version,
  90. re_doc: add_doc}
  91. here = os.path.abspath(os.path.dirname(__file__))
  92. meta_fh = open(os.path.join(here, "celery/__init__.py"))
  93. try:
  94. meta = {}
  95. for line in meta_fh:
  96. if line.strip() == '# -eof meta-':
  97. break
  98. for pattern, handler in pats.items():
  99. m = pattern.match(line.strip())
  100. if m:
  101. meta.update(handler(m))
  102. finally:
  103. meta_fh.close()
  104. # -*- Custom Commands -*-
  105. class quicktest(test):
  106. extra_env = dict(SKIP_RLIMITS=1, QUICKTEST=1)
  107. def run(self, *args, **kwargs):
  108. for env_name, env_value in self.extra_env.items():
  109. os.environ[env_name] = str(env_value)
  110. test.run(self, *args, **kwargs)
  111. # -*- Installation Dependencies -*-
  112. py_version = sys.version_info
  113. is_jython = sys.platform.startswith("java")
  114. is_pypy = hasattr(sys, "pypy_version_info")
  115. def reqs(f):
  116. return filter(None, [l.strip() for l in open(
  117. os.path.join(os.getcwd(), "requirements", f)).readlines()])
  118. install_requires = reqs("default-py3k.txt" if is_py3k else "default.txt")
  119. if is_jython:
  120. install_requires.extend(reqs("jython.txt"))
  121. if py_version[0:2] == (2, 6):
  122. install_requires.extend(reqs("py26.txt"))
  123. elif py_version[0:2] == (2, 5):
  124. install_requires.extend(reqs("py25.txt"))
  125. # -*- Tests Requires -*-
  126. tests_require = ["nose", "nose-cover3", "sqlalchemy", "mock==dev"]
  127. if sys.version_info < (2, 7):
  128. tests_require.append("unittest2")
  129. elif sys.version_info <= (2, 5):
  130. tests_require.append("simplejson")
  131. # -*- Long Description -*-
  132. if os.path.exists("README.rst"):
  133. long_description = codecs.open("README.rst", "r", "utf-8").read()
  134. else:
  135. long_description = "See http://pypi.python.org/pypi/celery"
  136. # -*- Entry Points -*- #
  137. console_scripts = entrypoints["console_scripts"] = [
  138. 'celery = celery.bin.celery:main',
  139. 'celeryd = celery.bin.celeryd:main',
  140. 'celerybeat = celery.bin.celerybeat:main',
  141. 'camqadm = celery.bin.camqadm:main',
  142. 'celeryev = celery.bin.celeryev:main',
  143. 'celeryctl = celery.bin.celeryctl:main',
  144. 'celeryd-multi = celery.bin.celeryd_multi:main',
  145. ]
  146. # bundles: Only relevant for Celery developers.
  147. entrypoints["bundle.bundles"] = ["celery = celery.contrib.bundles:bundles"]
  148. # -*- %%% -*-
  149. setup(
  150. name=NAME,
  151. version=meta["VERSION"],
  152. description=meta["doc"],
  153. author=meta["author"],
  154. author_email=meta["contact"],
  155. url=meta["homepage"],
  156. platforms=["any"],
  157. license="BSD",
  158. packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
  159. zip_safe=False,
  160. install_requires=install_requires,
  161. tests_require=tests_require,
  162. test_suite="nose.collector",
  163. cmdclass={"quicktest": quicktest},
  164. classifiers=classifiers,
  165. entry_points=entrypoints,
  166. long_description=long_description,
  167. **extra)