Skip to main content

A utility module to automate building setup configuration files.

Project description

setuputils3

A utility module to automate building setup configuration files. The latest official release is available on PyPI at https://pypi.org/project/setuputils3/ and the latest source code is available on Gitlab at https://gitlab.com/pdonis/setuputils3.

Running setuputils in the root of your source tree will build a setup.cfg file for you from inputs that you supply and from its ability to auto-discover the things that typically go into a distribution of your Python application or library. The main tool that uses setup.cfg, setuptools, also has much the same auto-discovery capability, but the advantage with setuputils is that you get to see all the output of the auto-discovery logic in the final setup.cfg file before using it to build your distribution. With setuptools, you have no way of getting an advance look at what the tool thinks should go into your distribution; you only see what is in the distribution after it is built.

Using setuputils in this mode is simple: for each section of setup.cfg, you put options that you want to specify in advance in the root of your source tree in files with an .in extension, one for each section that will end up in setup.cfg. For example, you would put metadata in the file metadata.in, options in the file options.in, etc. For subsections, just use the subsection name as it would appear in setup.cfg as the base file name, so, for example, entry points would appear in options.entry_points.in. Do not include anything in the .in files that you want setuputils to auto-discover, so, for example, if you want setuputils to auto-discover your packages, you would not include "packages" in your options.in file at all (whereas with setuptools you would include "packages = find:" in your setup.cfg).

Once you have created your .in files, then you simply execute

$ python3 -m setuputils

in the root of your source tree. This will build the setup.cfg file for you. You can then look at it to make sure it is correct before using a build backend to build your distribution.

With this mode, if you are using a PEP 517 compliant build backend, you do not need a setup.py script at all. You can use setuptools as such a backend as long as you include a pyproject.toml file and specify setuptools in it, as described in the Python packaging documentation. If you do have a setup.py script, all it would need to contain is an import of setuptools and call to setuptools.setup() with no arguments (since all of the information needed is in setup.cfg).

You can also use setuputils itself as a PEP 517 compliant build backend. In this mode, you can still run setuputils as described above before doing your build to make sure setup.cfg is correct. But using setuputils as your build backend ensures that setup.cfg will be rebuilt on every build to ensure consistency with the current state of your source tree. To use setuputils as your build backend, your pyproject.toml should look like this:

[build-system]
requires = ["setuputils3 >= 2.1", "setuptools >= 40.8.0", "wheel"]
build-backend = "setuputils_build"

You still need to include setuptools and wheel as build requirements, since setuputils depends on them; the setuputils build backend is just a thin wrapper around setuptools.build_meta that ensures that setup.cfg is built and up to date before the setuptools build runs.

Note that if you have a setup.py script that was used with previous versions of setuputils, you do not have to transition it to the new format using .in files all at once. Setuputils will read any global variables that are defined in your setup.py, as you would have done in previous setuputils versions, and include them in what it outputs to setup.cfg after processing them just as it would have in previous versions, so you can transition things incrementally if that works better for your project. (However, you should remove any calls to setup_vars in your setup.py script, leaving only the call to setuptools.setup() with no arguments, since all the information it needs will be in setup.cfg.) Note that if you have a setup.py script, you cannot use setuputils as a build backend; you can only use it to generate setup.cfg before doing a build. Also note that if you are using setuputils in this "legacy" mode, you will have to include it in your source distributions (instead of just listing it as a requirement in pyprojects.toml), since "legacy" mode builds have no way of specifying build requirements other than setuptools itself.

See the module docstrings for more information.

SETUPUTILS3 is Copyright (C) 2012-2022 by Peter A. Donis. Released under the Python Software Foundation License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

setuputils3-2.1.tar.gz (13.7 kB view hashes)

Uploaded source

Built Distribution

setuputils3-2.1-py3-none-any.whl (14.6 kB view hashes)

Uploaded py3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page