setuptools_extension.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. from distutils.core import Extension as _Extension
  2. from distutils.core import Distribution as _Distribution
  3. def _get_unpatched(cls):
  4. """Protect against re-patching the distutils if reloaded
  5. Also ensures that no other distutils extension monkeypatched the distutils
  6. first.
  7. """
  8. while cls.__module__.startswith('setuptools'):
  9. cls, = cls.__bases__
  10. if not cls.__module__.startswith('distutils'):
  11. raise AssertionError(
  12. "distutils has already been patched by %r" % cls
  13. )
  14. return cls
  15. _Distribution = _get_unpatched(_Distribution)
  16. _Extension = _get_unpatched(_Extension)
  17. try:
  18. from Pyrex.Distutils.build_ext import build_ext
  19. except ImportError:
  20. have_pyrex = False
  21. else:
  22. have_pyrex = True
  23. class Extension(_Extension):
  24. """Extension that uses '.c' files in place of '.pyx' files"""
  25. if not have_pyrex:
  26. # convert .pyx extensions to .c
  27. def __init__(self,*args,**kw):
  28. _Extension.__init__(self,*args,**kw)
  29. sources = []
  30. for s in self.sources:
  31. if s.endswith('.pyx'):
  32. sources.append(s[:-3]+'c')
  33. else:
  34. sources.append(s)
  35. self.sources = sources
  36. class Library(Extension):
  37. """Just like a regular Extension, but built as a library instead"""
  38. import sys, distutils.core, distutils.extension
  39. distutils.core.Extension = Extension
  40. distutils.extension.Extension = Extension
  41. if 'distutils.command.build_ext' in sys.modules:
  42. sys.modules['distutils.command.build_ext'].Extension = Extension