Skip to content

PEP 517: Add build-backend-location #889

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pep-0517.txt
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,13 @@ specified in PYTHONPATH). Although Python automatically adds the working
directory to ``sys.path`` in some situations, code to resolve the backend should
not be affected by this.

In order to allow build backends to build themselves, it is possible to supply
an additional location to search for build backends with the
``build-backend-location`` option. If specified, this must be a path relative
to the root of the source tree which will be added to ``sys.path`` while the
build backend is imported. Build frontends must remove this location from the
module search path before executing the build backend hooks.

If the ``pyproject.toml`` file is absent, or the ``build-backend``
key is missing, the source tree is not using this specification, and
tools should fall back to running ``setup.py``.
Expand Down