A powerful build system for managing development buildouts, automating setup of projects with multiple components. Version 5.2.0, with a stable release every few years.
pip install zc.buildoutVerified import paths — ran on the pinned version, not inferred.
Programmatic invocation of buildout; typically invoked via the 'bin/buildout' script.
Replace 'download-cache = ...' with 'download-directory = ...' in buildout.cfg.
Ensure you have Python >= 3.9 installed.
Use 'import zc.buildout' and ensure the namespace package 'zc' is installed.
Use the 'pip' recipe or manual 'pip install -e .' inside the buildout environment.
Change to 'import zc.buildout'.
Use 'from zc.buildout import Buildout' and ensure you're using zc.buildout >=5.0. For older versions, see documentation.
Escape '%' as '%%' in values where '%' is literal, e.g., 'url = http://example.com%%path'.