build_meta.py 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. """A PEP 517 interface to setuptools
  2. Previously, when a user or a command line tool (let's call it a "frontend")
  3. needed to make a request of setuptools to take a certain action, for
  4. example, generating a list of installation requirements, the frontend would
  5. would call "setup.py egg_info" or "setup.py bdist_wheel" on the command line.
  6. PEP 517 defines a different method of interfacing with setuptools. Rather
  7. than calling "setup.py" directly, the frontend should:
  8. 1. Set the current directory to the directory with a setup.py file
  9. 2. Import this module into a safe python interpreter (one in which
  10. setuptools can potentially set global variables or crash hard).
  11. 3. Call one of the functions defined in PEP 517.
  12. What each function does is defined in PEP 517. However, here is a "casual"
  13. definition of the functions (this definition should not be relied on for
  14. bug reports or API stability):
  15. - `build_wheel`: build a wheel in the folder and return the basename
  16. - `get_requires_for_build_wheel`: get the `setup_requires` to build
  17. - `prepare_metadata_for_build_wheel`: get the `install_requires`
  18. - `build_sdist`: build an sdist in the folder and return the basename
  19. - `get_requires_for_build_sdist`: get the `setup_requires` to build
  20. Again, this is not a formal definition! Just a "taste" of the module.
  21. """
  22. import io
  23. import os
  24. import sys
  25. import tokenize
  26. import shutil
  27. import contextlib
  28. import tempfile
  29. import setuptools
  30. import distutils
  31. from pkg_resources import parse_requirements
  32. __all__ = ['get_requires_for_build_sdist',
  33. 'get_requires_for_build_wheel',
  34. 'prepare_metadata_for_build_wheel',
  35. 'build_wheel',
  36. 'build_sdist',
  37. '__legacy__',
  38. 'SetupRequirementsError']
  39. class SetupRequirementsError(BaseException):
  40. def __init__(self, specifiers):
  41. self.specifiers = specifiers
  42. class Distribution(setuptools.dist.Distribution):
  43. def fetch_build_eggs(self, specifiers):
  44. specifier_list = list(map(str, parse_requirements(specifiers)))
  45. raise SetupRequirementsError(specifier_list)
  46. @classmethod
  47. @contextlib.contextmanager
  48. def patch(cls):
  49. """
  50. Replace
  51. distutils.dist.Distribution with this class
  52. for the duration of this context.
  53. """
  54. orig = distutils.core.Distribution
  55. distutils.core.Distribution = cls
  56. try:
  57. yield
  58. finally:
  59. distutils.core.Distribution = orig
  60. @contextlib.contextmanager
  61. def no_install_setup_requires():
  62. """Temporarily disable installing setup_requires
  63. Under PEP 517, the backend reports build dependencies to the frontend,
  64. and the frontend is responsible for ensuring they're installed.
  65. So setuptools (acting as a backend) should not try to install them.
  66. """
  67. orig = setuptools._install_setup_requires
  68. setuptools._install_setup_requires = lambda attrs: None
  69. try:
  70. yield
  71. finally:
  72. setuptools._install_setup_requires = orig
  73. def _get_immediate_subdirectories(a_dir):
  74. return [name for name in os.listdir(a_dir)
  75. if os.path.isdir(os.path.join(a_dir, name))]
  76. def _file_with_extension(directory, extension):
  77. matching = (
  78. f for f in os.listdir(directory)
  79. if f.endswith(extension)
  80. )
  81. file, = matching
  82. return file
  83. def _open_setup_script(setup_script):
  84. if not os.path.exists(setup_script):
  85. # Supply a default setup.py
  86. return io.StringIO(u"from setuptools import setup; setup()")
  87. return getattr(tokenize, 'open', open)(setup_script)
  88. class _BuildMetaBackend(object):
  89. def _fix_config(self, config_settings):
  90. config_settings = config_settings or {}
  91. config_settings.setdefault('--global-option', [])
  92. return config_settings
  93. def _get_build_requires(self, config_settings, requirements):
  94. config_settings = self._fix_config(config_settings)
  95. sys.argv = sys.argv[:1] + ['egg_info'] + \
  96. config_settings["--global-option"]
  97. try:
  98. with Distribution.patch():
  99. self.run_setup()
  100. except SetupRequirementsError as e:
  101. requirements += e.specifiers
  102. return requirements
  103. def run_setup(self, setup_script='setup.py'):
  104. # Note that we can reuse our build directory between calls
  105. # Correctness comes first, then optimization later
  106. __file__ = setup_script
  107. __name__ = '__main__'
  108. with _open_setup_script(__file__) as f:
  109. code = f.read().replace(r'\r\n', r'\n')
  110. exec(compile(code, __file__, 'exec'), locals())
  111. def get_requires_for_build_wheel(self, config_settings=None):
  112. config_settings = self._fix_config(config_settings)
  113. return self._get_build_requires(
  114. config_settings, requirements=['wheel'])
  115. def get_requires_for_build_sdist(self, config_settings=None):
  116. config_settings = self._fix_config(config_settings)
  117. return self._get_build_requires(config_settings, requirements=[])
  118. def prepare_metadata_for_build_wheel(self, metadata_directory,
  119. config_settings=None):
  120. sys.argv = sys.argv[:1] + [
  121. 'dist_info', '--egg-base', metadata_directory]
  122. with no_install_setup_requires():
  123. self.run_setup()
  124. dist_info_directory = metadata_directory
  125. while True:
  126. dist_infos = [f for f in os.listdir(dist_info_directory)
  127. if f.endswith('.dist-info')]
  128. if (
  129. len(dist_infos) == 0 and
  130. len(_get_immediate_subdirectories(dist_info_directory)) == 1
  131. ):
  132. dist_info_directory = os.path.join(
  133. dist_info_directory, os.listdir(dist_info_directory)[0])
  134. continue
  135. assert len(dist_infos) == 1
  136. break
  137. # PEP 517 requires that the .dist-info directory be placed in the
  138. # metadata_directory. To comply, we MUST copy the directory to the root
  139. if dist_info_directory != metadata_directory:
  140. shutil.move(
  141. os.path.join(dist_info_directory, dist_infos[0]),
  142. metadata_directory)
  143. shutil.rmtree(dist_info_directory, ignore_errors=True)
  144. return dist_infos[0]
  145. def _build_with_temp_dir(self, setup_command, result_extension,
  146. result_directory, config_settings):
  147. config_settings = self._fix_config(config_settings)
  148. result_directory = os.path.abspath(result_directory)
  149. # Build in a temporary directory, then copy to the target.
  150. os.makedirs(result_directory, exist_ok=True)
  151. with tempfile.TemporaryDirectory(dir=result_directory) as tmp_dist_dir:
  152. sys.argv = (sys.argv[:1] + setup_command +
  153. ['--dist-dir', tmp_dist_dir] +
  154. config_settings["--global-option"])
  155. with no_install_setup_requires():
  156. self.run_setup()
  157. result_basename = _file_with_extension(
  158. tmp_dist_dir, result_extension)
  159. result_path = os.path.join(result_directory, result_basename)
  160. if os.path.exists(result_path):
  161. # os.rename will fail overwriting on non-Unix.
  162. os.remove(result_path)
  163. os.rename(os.path.join(tmp_dist_dir, result_basename), result_path)
  164. return result_basename
  165. def build_wheel(self, wheel_directory, config_settings=None,
  166. metadata_directory=None):
  167. return self._build_with_temp_dir(['bdist_wheel'], '.whl',
  168. wheel_directory, config_settings)
  169. def build_sdist(self, sdist_directory, config_settings=None):
  170. return self._build_with_temp_dir(['sdist', '--formats', 'gztar'],
  171. '.tar.gz', sdist_directory,
  172. config_settings)
  173. class _BuildMetaLegacyBackend(_BuildMetaBackend):
  174. """Compatibility backend for setuptools
  175. This is a version of setuptools.build_meta that endeavors
  176. to maintain backwards
  177. compatibility with pre-PEP 517 modes of invocation. It
  178. exists as a temporary
  179. bridge between the old packaging mechanism and the new
  180. packaging mechanism,
  181. and will eventually be removed.
  182. """
  183. def run_setup(self, setup_script='setup.py'):
  184. # In order to maintain compatibility with scripts assuming that
  185. # the setup.py script is in a directory on the PYTHONPATH, inject
  186. # '' into sys.path. (pypa/setuptools#1642)
  187. sys_path = list(sys.path) # Save the original path
  188. script_dir = os.path.dirname(os.path.abspath(setup_script))
  189. if script_dir not in sys.path:
  190. sys.path.insert(0, script_dir)
  191. # Some setup.py scripts (e.g. in pygame and numpy) use sys.argv[0] to
  192. # get the directory of the source code. They expect it to refer to the
  193. # setup.py script.
  194. sys_argv_0 = sys.argv[0]
  195. sys.argv[0] = setup_script
  196. try:
  197. super(_BuildMetaLegacyBackend,
  198. self).run_setup(setup_script=setup_script)
  199. finally:
  200. # While PEP 517 frontends should be calling each hook in a fresh
  201. # subprocess according to the standard (and thus it should not be
  202. # strictly necessary to restore the old sys.path), we'll restore
  203. # the original path so that the path manipulation does not persist
  204. # within the hook after run_setup is called.
  205. sys.path[:] = sys_path
  206. sys.argv[0] = sys_argv_0
  207. # The primary backend
  208. _BACKEND = _BuildMetaBackend()
  209. get_requires_for_build_wheel = _BACKEND.get_requires_for_build_wheel
  210. get_requires_for_build_sdist = _BACKEND.get_requires_for_build_sdist
  211. prepare_metadata_for_build_wheel = _BACKEND.prepare_metadata_for_build_wheel
  212. build_wheel = _BACKEND.build_wheel
  213. build_sdist = _BACKEND.build_sdist
  214. # The legacy backend
  215. __legacy__ = _BuildMetaLegacyBackend()