You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

282 lines
10KB

  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. try:
  82. file, = matching
  83. except ValueError:
  84. raise ValueError(
  85. 'No distribution was found. Ensure that `setup.py` '
  86. 'is not empty and that it calls `setup()`.')
  87. return file
  88. def _open_setup_script(setup_script):
  89. if not os.path.exists(setup_script):
  90. # Supply a default setup.py
  91. return io.StringIO(u"from setuptools import setup; setup()")
  92. return getattr(tokenize, 'open', open)(setup_script)
  93. class _BuildMetaBackend(object):
  94. def _fix_config(self, config_settings):
  95. config_settings = config_settings or {}
  96. config_settings.setdefault('--global-option', [])
  97. return config_settings
  98. def _get_build_requires(self, config_settings, requirements):
  99. config_settings = self._fix_config(config_settings)
  100. sys.argv = sys.argv[:1] + ['egg_info'] + \
  101. config_settings["--global-option"]
  102. try:
  103. with Distribution.patch():
  104. self.run_setup()
  105. except SetupRequirementsError as e:
  106. requirements += e.specifiers
  107. return requirements
  108. def run_setup(self, setup_script='setup.py'):
  109. # Note that we can reuse our build directory between calls
  110. # Correctness comes first, then optimization later
  111. __file__ = setup_script
  112. __name__ = '__main__'
  113. with _open_setup_script(__file__) as f:
  114. code = f.read().replace(r'\r\n', r'\n')
  115. exec(compile(code, __file__, 'exec'), locals())
  116. def get_requires_for_build_wheel(self, config_settings=None):
  117. config_settings = self._fix_config(config_settings)
  118. return self._get_build_requires(
  119. config_settings, requirements=['wheel'])
  120. def get_requires_for_build_sdist(self, config_settings=None):
  121. config_settings = self._fix_config(config_settings)
  122. return self._get_build_requires(config_settings, requirements=[])
  123. def prepare_metadata_for_build_wheel(self, metadata_directory,
  124. config_settings=None):
  125. sys.argv = sys.argv[:1] + [
  126. 'dist_info', '--egg-base', metadata_directory]
  127. with no_install_setup_requires():
  128. self.run_setup()
  129. dist_info_directory = metadata_directory
  130. while True:
  131. dist_infos = [f for f in os.listdir(dist_info_directory)
  132. if f.endswith('.dist-info')]
  133. if (
  134. len(dist_infos) == 0 and
  135. len(_get_immediate_subdirectories(dist_info_directory)) == 1
  136. ):
  137. dist_info_directory = os.path.join(
  138. dist_info_directory, os.listdir(dist_info_directory)[0])
  139. continue
  140. assert len(dist_infos) == 1
  141. break
  142. # PEP 517 requires that the .dist-info directory be placed in the
  143. # metadata_directory. To comply, we MUST copy the directory to the root
  144. if dist_info_directory != metadata_directory:
  145. shutil.move(
  146. os.path.join(dist_info_directory, dist_infos[0]),
  147. metadata_directory)
  148. shutil.rmtree(dist_info_directory, ignore_errors=True)
  149. return dist_infos[0]
  150. def _build_with_temp_dir(self, setup_command, result_extension,
  151. result_directory, config_settings):
  152. config_settings = self._fix_config(config_settings)
  153. result_directory = os.path.abspath(result_directory)
  154. # Build in a temporary directory, then copy to the target.
  155. os.makedirs(result_directory, exist_ok=True)
  156. with tempfile.TemporaryDirectory(dir=result_directory) as tmp_dist_dir:
  157. sys.argv = (sys.argv[:1] + setup_command +
  158. ['--dist-dir', tmp_dist_dir] +
  159. config_settings["--global-option"])
  160. with no_install_setup_requires():
  161. self.run_setup()
  162. result_basename = _file_with_extension(
  163. tmp_dist_dir, result_extension)
  164. result_path = os.path.join(result_directory, result_basename)
  165. if os.path.exists(result_path):
  166. # os.rename will fail overwriting on non-Unix.
  167. os.remove(result_path)
  168. os.rename(os.path.join(tmp_dist_dir, result_basename), result_path)
  169. return result_basename
  170. def build_wheel(self, wheel_directory, config_settings=None,
  171. metadata_directory=None):
  172. return self._build_with_temp_dir(['bdist_wheel'], '.whl',
  173. wheel_directory, config_settings)
  174. def build_sdist(self, sdist_directory, config_settings=None):
  175. return self._build_with_temp_dir(['sdist', '--formats', 'gztar'],
  176. '.tar.gz', sdist_directory,
  177. config_settings)
  178. class _BuildMetaLegacyBackend(_BuildMetaBackend):
  179. """Compatibility backend for setuptools
  180. This is a version of setuptools.build_meta that endeavors
  181. to maintain backwards
  182. compatibility with pre-PEP 517 modes of invocation. It
  183. exists as a temporary
  184. bridge between the old packaging mechanism and the new
  185. packaging mechanism,
  186. and will eventually be removed.
  187. """
  188. def run_setup(self, setup_script='setup.py'):
  189. # In order to maintain compatibility with scripts assuming that
  190. # the setup.py script is in a directory on the PYTHONPATH, inject
  191. # '' into sys.path. (pypa/setuptools#1642)
  192. sys_path = list(sys.path) # Save the original path
  193. script_dir = os.path.dirname(os.path.abspath(setup_script))
  194. if script_dir not in sys.path:
  195. sys.path.insert(0, script_dir)
  196. # Some setup.py scripts (e.g. in pygame and numpy) use sys.argv[0] to
  197. # get the directory of the source code. They expect it to refer to the
  198. # setup.py script.
  199. sys_argv_0 = sys.argv[0]
  200. sys.argv[0] = setup_script
  201. try:
  202. super(_BuildMetaLegacyBackend,
  203. self).run_setup(setup_script=setup_script)
  204. finally:
  205. # While PEP 517 frontends should be calling each hook in a fresh
  206. # subprocess according to the standard (and thus it should not be
  207. # strictly necessary to restore the old sys.path), we'll restore
  208. # the original path so that the path manipulation does not persist
  209. # within the hook after run_setup is called.
  210. sys.path[:] = sys_path
  211. sys.argv[0] = sys_argv_0
  212. # The primary backend
  213. _BACKEND = _BuildMetaBackend()
  214. get_requires_for_build_wheel = _BACKEND.get_requires_for_build_wheel
  215. get_requires_for_build_sdist = _BACKEND.get_requires_for_build_sdist
  216. prepare_metadata_for_build_wheel = _BACKEND.prepare_metadata_for_build_wheel
  217. build_wheel = _BACKEND.build_wheel
  218. build_sdist = _BACKEND.build_sdist
  219. # The legacy backend
  220. __legacy__ = _BuildMetaLegacyBackend()