Pyproject installer
Project description
pyproject-installer
This tool is intended to build wheel from Python source tree and install it.
Description
-
Supported platform: Unix.
Currently, the only platform-specific part is the pipe. -
OS environment of this project is a
network-isolated
environment, which implies that a local loopback interface is the only available network interface. Thus,pyproject-installer
doesn't perform any network activity (e.g. it doesn't install build dependencies specified via PEP518 configuration or PEP517'sget_requires_for_*
hooks). This also makes it difficult or impossible to create an isolated Python environment for calling build backend hooks specified in PEP517, therefore, current Python environment is the only available environment. -
Source tree can be either checkout of VCS or unpacked source distribution.
-
An installation result will be consumed by external tool like RPM.
The main usage ofpyproject-installer
looks like:external tool => (pyproject-installer: build => install to destdir) => external tool packages destdir
Therefore, there is no need to build intermediate source distribution for build wheel, only
build_wheel
backend's hook is actually called.Note: an installation into Python virtual environment is also supported, but only the manual uninstallation of such packages is possible (tools should refuse an uninstallation of distribution with missing
RECORD
file). -
Only stdlib or vendored dependencies can be used in runtime for bootstrapping any Python project.
Currently, onlytomli
(used for parsingpyproject.toml
configuration file) is vendored bypyproject_installer
.Note:
tomli
is the part of stdlib since Python 3.11. -
Installation of build dependencies is up to the caller.
Moreover, parsing of build requirements requires two additional external packages:packaging
and its dependencypyparsing
. But since the validation of build dependencies is optional (disabled by default) there is no point to vendor them. -
There is no post-installation bytecompilation.
PEP427 says that wheel installers should compile any installed .py to .pyc. External tools like RPM already provide Python bytecompilation means, which compile for multiple optimization levels at a time. No point to compile modules twice. -
RECORD file is not installed.
https://peps.python.org/pep-0627/#optional-record-file:Specifically, the RECORD file is unnecessary when projects are installed by a Linux system packaging system, which has its own ways to keep track of files, uninstall them or check their integrity. Having to keep a RECORD file in sync with the disk and the system package database would be unreasonably fragile, and no RECORD file is better than one that does not correspond to reality.
-
INSTALLER is populated with
pyproject_installer
as installer by default.
https://peps.python.org/pep-0627/#optional-installer-file:The INSTALLER file is also made optional, and specified to be used for informational purposes only. It is still a single-line text file containing the name of the installer.
Usage
Build
python -m pyproject_installer build
Build positional arguments:
description: source directory default: current working directory example: python -m pyproject_installer build .
Build options:
name: --outdir OUTDIR, -o OUTDIR description: output directory for built wheel default: {srcdir}/dist example: python -m pyproject_installer build --outdir ~/outdir
Upon successful build pyproject_installer
dumps wheel filename into
{OUTDIR}/.wheeltracker
.
name: --sdist description: build source distribution(sdist) instead of binary one(wheel).
Note: installer supports only wheel format. default: build wheel example: python -m pyproject_installer build --sdist
name: --backend-config-settings BACKEND_CONFIG_SETTINGS description: ad-hoc configuration for build backend as dumped JSON dictionary default: None Example of passing `config_settings` for setuptools backend: python -m pyproject_installer build --backend-config-settings='{"--global-option": ["--python-tag=sometag", "--build-number=123"]}' Example of passing `config_settings` for pdm backend: python -m pyproject_installer build --backend-config-settings='{"--python-tag": "sometag"}'
Install
python -m pyproject_installer install
Install positional arguments:
description: wheel file to install default: contructed as directory {cwd}/dist and wheel filename read from {cwd}/dist/.wheeltracker example: python -m pyproject_installer install wheel.whl
Install options:
name: --destdir DESTDIR, -d DESTDIR description: Wheel installation root will be prepended with destdir default: / example: python -m pyproject_installer install --destdir ~/destdir
name: --installer INSTALLER description: Name of installer to be recorded in dist-info/INSTALLER default: pyproject_installer example: python -m pyproject_installer install --installer custom_installer
Comparison with other tools
pyproject-installer
consists of builder and installer, both provide
only necessary and sufficient functionality.
builder
Functionally, today's builder is similar to build.
The key differences are:
- highly specialized defaults (see description)
- highly specialized features to drop extra runtime dependencies like
pep517
orpackaging
. No point to vendorpep517
to call onlybuild_wheel
backend hook in subprocess.
installer
Functionally, today's installer is similar to installer.
The key differences are:
- highly specialized defaults and features (see description)
Both can be replaced with pip. But again, no
point to use full-featured complex pip
to highly specialized task.
Bootstrap
There is a self-hosted build backend to avoid dependency on any other backend.
For example, bootstrap can be done as:
export PYTHONPATH=$(pwd)/src
python -m pyproject_installer build
python -m pyproject_installer install --destdir=/rootdir
License
Distributed under the terms of the MIT license, pyproject-installer
is
free and open source software.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyproject_installer-0.1.0.tar.gz
.
File metadata
- Download URL: pyproject_installer-0.1.0.tar.gz
- Upload date:
- Size: 33.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59a899dc308bda9e73575f73481fd2e0e2ae3e7b0e9d3671acb51e802d705016 |
|
MD5 | 982617b9d93527c849c1f16817b8d285 |
|
BLAKE2b-256 | 705824f5a21997434dfc7484b2e175a6e83b0e67e8ec1fd3aee960cd281d524f |
File details
Details for the file pyproject_installer-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: pyproject_installer-0.1.0-py3-none-any.whl
- Upload date:
- Size: 26.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68d550c92fc15213af8ecaf37ceae3ad11fdfd61ad2a81dad3b4424aada98902 |
|
MD5 | 32a0382349dd771e05e6441f6db4eaf6 |
|
BLAKE2b-256 | b483c52577d9e385b9c7b80c86110fb37752cf5274db1c0fe1198c078ec251b7 |