To make it easy for others to develop / remix / build this installer locally, I think we should add either a Makefile recipe, something like this: ```shell build-environment: @conda create -n sp-installer "python=3.11" conda-build conda-verify constructor joblib threadpoolctl && \ conda activate sp-installer ``` ... or put a dev section in `project.optional_dependencies` of `pyproject.toml` that will install the necessary build deps. _Originally posted by @drammock in https://github.com/scientific-python/installer/pull/3#pullrequestreview-2878560987_