setup.py 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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 :: 3
  62. Programming Language :: Python :: 3.2
  63. Programming Language :: Python :: Implementation :: CPython
  64. Programming Language :: Python :: Implementation :: PyPy
  65. Programming Language :: Python :: Implementation :: Jython
  66. Operating System :: OS Independent
  67. Operating System :: POSIX
  68. Operating System :: Microsoft :: Windows
  69. Operating System :: MacOS :: MacOS X
  70. """
  71. classifiers = [s.strip() for s in classes.split('\n') if s]
  72. # -*- Python 3 -*-
  73. is_py3k = sys.version_info >= (3, 0)
  74. if is_py3k:
  75. extra.update(use_2to3=True)
  76. # -*- Distribution Meta -*-
  77. import re
  78. re_meta = re.compile(r'__(\w+?)__\s*=\s*(.*)')
  79. re_vers = re.compile(r'VERSION\s*=\s*\((.*?)\)')
  80. re_doc = re.compile(r'^"""(.+?)"""')
  81. rq = lambda s: s.strip("\"'")
  82. def add_default(m):
  83. attr_name, attr_value = m.groups()
  84. return ((attr_name, rq(attr_value)), )
  85. def add_version(m):
  86. v = list(map(rq, m.groups()[0].split(", ")))
  87. return (("VERSION", ".".join(v[0:3]) + "".join(v[3:])), )
  88. def add_doc(m):
  89. return (("doc", m.groups()[0]), )
  90. pats = {re_meta: add_default,
  91. re_vers: add_version,
  92. re_doc: add_doc}
  93. here = os.path.abspath(os.path.dirname(__file__))
  94. meta_fh = open(os.path.join(here, "celery/__init__.py"))
  95. try:
  96. meta = {}
  97. for line in meta_fh:
  98. if line.strip() == '# -eof meta-':
  99. break
  100. for pattern, handler in pats.items():
  101. m = pattern.match(line.strip())
  102. if m:
  103. meta.update(handler(m))
  104. finally:
  105. meta_fh.close()
  106. # -*- Custom Commands -*-
  107. class quicktest(test):
  108. extra_env = dict(SKIP_RLIMITS=1, QUICKTEST=1)
  109. def run(self, *args, **kwargs):
  110. for env_name, env_value in self.extra_env.items():
  111. os.environ[env_name] = str(env_value)
  112. test.run(self, *args, **kwargs)
  113. # -*- Installation Dependencies -*-
  114. py_version = sys.version_info
  115. is_jython = sys.platform.startswith("java")
  116. is_pypy = hasattr(sys, "pypy_version_info")
  117. def reqs(f):
  118. return filter(None, [l.strip() for l in open(
  119. os.path.join(os.getcwd(), "requirements", f)).readlines()])
  120. install_requires = reqs("default-py3k.txt" if is_py3k else "default.txt")
  121. if is_jython:
  122. install_requires.extend(reqs("jython.txt"))
  123. if py_version[0:2] == (2, 6):
  124. install_requires.extend(reqs("py26.txt"))
  125. elif py_version[0:2] == (2, 5):
  126. install_requires.extend(reqs("py25.txt"))
  127. # -*- Tests Requires -*-
  128. tests_require = ["nose", "nose-cover3", "sqlalchemy", "mock==dev"]
  129. if sys.version_info < (2, 7):
  130. tests_require.append("unittest2")
  131. elif sys.version_info <= (2, 5):
  132. tests_require.append("simplejson")
  133. # -*- Long Description -*-
  134. if os.path.exists("README.rst"):
  135. long_description = codecs.open("README.rst", "r", "utf-8").read()
  136. else:
  137. long_description = "See http://pypi.python.org/pypi/celery"
  138. # -*- Entry Points -*- #
  139. console_scripts = entrypoints["console_scripts"] = [
  140. 'celery = celery.bin.celery:main',
  141. 'celeryd = celery.bin.celeryd:main',
  142. 'celerybeat = celery.bin.celerybeat:main',
  143. 'camqadm = celery.bin.camqadm:main',
  144. 'celeryev = celery.bin.celeryev:main',
  145. 'celeryctl = celery.bin.celeryctl:main',
  146. 'celeryd-multi = celery.bin.celeryd_multi:main',
  147. ]
  148. # bundles: Only relevant for Celery developers.
  149. entrypoints["bundle.bundles"] = ["celery = celery.contrib.bundles:bundles"]
  150. # -*- %%% -*-
  151. setup(
  152. name=NAME,
  153. version=meta["VERSION"],
  154. description=meta["doc"],
  155. author=meta["author"],
  156. author_email=meta["contact"],
  157. url=meta["homepage"],
  158. platforms=["any"],
  159. license="BSD",
  160. packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
  161. zip_safe=False,
  162. install_requires=install_requires,
  163. tests_require=tests_require,
  164. test_suite="nose.collector",
  165. cmdclass={"quicktest": quicktest},
  166. classifiers=classifiers,
  167. entry_points=entrypoints,
  168. long_description=long_description,
  169. **extra)