Skip to main content

the blessed package to manage your versions by scm tags

Project description

setuptools_scm

setuptools_scm handles managing your Python package versions in SCM metadata instead of declaring them as the version argument or in a SCM managed file.

Additionally setuptools_scm provides setuptools with a list of files that are managed by the SCM (i.e. it automatically adds all of the SCM-managed files to the sdist). Unwanted files must be excluded by discarding them via MANIFEST.in.

https://travis-ci.org/pypa/setuptools_scm.svg?branch=master https://tidelift.com/badges/package/pypi/setuptools-scm

pyproject.toml usage

The preferred way to configure setuptools_scm is to author settings in a tool.setuptools_scm section of pyproject.toml.

This feature requires Setuptools 42 or later, released in Nov, 2019. If your project needs to support build from sdist on older versions of Setuptools, you will need to also implement the setup.py usage for those legacy environments.

First, ensure that setuptools_scm is present during the project’s built step by specifying it as one of the build requirements.

# pyproject.toml
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]

Note that the toml extra must be supplied.

That will be sufficient to require setuptools_scm for projects that support PEP 518 (pip and pep517). Many tools, especially those that invoke setup.py for any reason, may continue to rely on setup_requires. For maximum compatibility with those uses, consider also including a setup_requires directive (described below in setup.py usage and setup.cfg).

To enable version inference, add this section to your pyproject.toml:

# pyproject.toml
[tool.setuptools_scm]

Including this section is comparable to supplying use_scm_version=True in setup.py. Additionally, include arbitrary keyword arguments in that section to be supplied to get_version(). For example:

# pyproject.toml

[tool.setuptools_scm]
write_to = "pkg/version.py"

setup.py usage

The following settings are considered legacy behavior and superseded by the pyproject.toml usage, but for maximal compatibility, projects may also supply the configuration in this older form.

To use setuptools_scm just modify your project’s setup.py file like this:

  • Add setuptools_scm to the setup_requires parameter.

  • Add the use_scm_version parameter and set it to True.

For example:

from setuptools import setup
setup(
    ...,
    use_scm_version=True,
    setup_requires=['setuptools_scm'],
    ...,
)

Arguments to get_version() (see below) may be passed as a dictionary to use_scm_version. For example:

from setuptools import setup
setup(
    ...,
    use_scm_version = {
        "root": "..",
        "relative_to": __file__,
        "local_scheme": "node-and-timestamp"
    },
    setup_requires=['setuptools_scm'],
    ...,
)

You can confirm the version number locally via setup.py:

$ python setup.py --version

setup.cfg usage

If using setuptools 30.3.0 or greater, you can store setup_requires configuration in setup.cfg. However, use_scm_version must still be placed in setup.py. For example:

# setup.py
from setuptools import setup
setup(
    use_scm_version=True,
)
# setup.cfg
[metadata]
...

[options]
setup_requires =
  setuptools_scm
...

You may also need to define a pyproject.toml file (PEP-0518) to ensure you have the required version of setuptools:

# pyproject.toml
[build-system]
requires = ["setuptools>=30.3.0", "wheel", "setuptools_scm"]

For more information, refer to the setuptools issue #1002.

Programmatic usage

In order to use setuptools_scm from code that is one directory deeper than the project’s root, you can use:

from setuptools_scm import get_version
version = get_version(root='..', relative_to=__file__)

See setup.py Usage above for how to use this within setup.py.

Retrieving package version at runtime

If you have opted not to hardcode the version number inside the package, you can retrieve it at runtime from PEP-0566 metadata using importlib.metadata from the standard library or the importlib_metadata backport:

from importlib.metadata import version, PackageNotFoundError

try:
    __version__ = version(__name__)
except PackageNotFoundError:
    # package is not installed
   pass

Alternatively, you can use pkg_resources which is included in setuptools:

from pkg_resources import get_distribution, DistributionNotFound

try:
    __version__ = get_distribution(__name__).version
except DistributionNotFound:
     # package is not installed
    pass

This does place a runtime dependency on setuptools.

Usage from Sphinx

It is discouraged to use setuptools_scm from Sphinx itself, instead use pkg_resources after editable/real installation:

# contents of docs/conf.py
from pkg_resources import get_distribution
release = get_distribution('myproject').version
# for example take major/minor
version = '.'.join(release.split('.')[:2])

The underlying reason is, that services like Read the Docs sometimes change the working directory for good reasons and using the installed metadata prevents using needless volatile data there.

Notable Plugins

setuptools_scm_git_archive

Provides partial support for obtaining versions from git archives that belong to tagged versions. The only reason for not including it in setuptools_scm itself is Git/GitHub not supporting sufficient metadata for untagged/followup commits, which is preventing a consistent UX.

Default versioning scheme

In the standard configuration setuptools_scm takes a look at three things:

  1. latest tag (with a version number)

  2. the distance to this tag (e.g. number of revisions since latest tag)

  3. workdir state (e.g. uncommitted changes since latest tag)

and uses roughly the following logic to render the version:

no distance and clean:

{tag}

distance and clean:

{next_version}.dev{distance}+{scm letter}{revision hash}

no distance and not clean:

{tag}+dYYYYMMDD

distance and not clean:

{next_version}.dev{distance}+{scm letter}{revision hash}.dYYYYMMDD

The next version is calculated by adding 1 to the last numeric component of the tag.

For Git projects, the version relies on git describe, so you will see an additional g prepended to the {revision hash}.

Semantic Versioning (SemVer)

Due to the default behavior it’s necessary to always include a patch version (the 3 in 1.2.3), or else the automatic guessing will increment the wrong part of the SemVer (e.g. tag 2.0 results in 2.1.devX instead of 2.0.1.devX). So please make sure to tag accordingly.

Builtin mechanisms for obtaining version numbers

  1. the SCM itself (git/hg)

  2. .hg_archival files (mercurial archives)

  3. PKG-INFO

File finders hook makes most of MANIFEST.in unnecessary

setuptools_scm implements a file_finders entry point which returns all files tracked by your SCM. This eliminates the need for a manually constructed MANIFEST.in in most cases where this would be required when not using setuptools_scm, namely:

  • To ensure all relevant files are packaged when running the sdist command.

  • When using include_package_data to include package data as part of the build or bdist_wheel.

MANIFEST.in may still be used: anything defined there overrides the hook. This is mostly useful to exclude files tracked in your SCM from packages, although in principle it can be used to explicitly include non-tracked files too.

Configuration parameters

In order to configure the way use_scm_version works you can provide a mapping with options instead of a boolean value.

The currently supported configuration keys are:

root:

Relative path to cwd, used for finding the SCM root; defaults to .

version_scheme:

Configures how the local version number is constructed; either an entrypoint name or a callable.

local_scheme:

Configures how the local component of the version is constructed; either an entrypoint name or a callable.

write_to:

A path to a file that gets replaced with a file containing the current version. It is ideal for creating a version.py file within the package, typically used to avoid using pkg_resources.get_distribution (which adds some overhead).

write_to_template:

A newstyle format string that is given the current version as the version keyword argument for formatting.

relative_to:

A file from which the root can be resolved. Typically called by a script or module that is not in the root of the repository to point setuptools_scm at the root of the repository by supplying __file__.

tag_regex:
A Python regex string to extract the version part from any SCM tag.

The regex needs to contain either a single match group, or a group named version, that captures the actual version information.

Defaults to the value of setuptools_scm.config.DEFAULT_TAG_REGEX (see config.py).

parentdir_prefix_version:

If the normal methods for detecting the version (SCM version, sdist metadata) fail, and the parent directory name starts with parentdir_prefix_version, then this prefix is stripped and the rest of the parent directory name is matched with tag_regex to get a version string. If this parameter is unset (the default), then this fallback is not used.

This is intended to cover GitHub’s “release tarballs”, which extract into directories named projectname-tag/ (in which case parentdir_prefix_version can be set e.g. to projectname-).

fallback_version:

A version string that will be used if no other method for detecting the version worked (e.g., when using a tarball with no metadata). If this is unset (the default), setuptools_scm will error if it fails to detect the version.

parse:

A function that will be used instead of the discovered SCM for parsing the version. Use with caution, this is a function for advanced use, and you should be familiar with the setuptools_scm internals to use it.

git_describe_command:

This command will be used instead the default git describe command. Use with caution, this is a function for advanced use, and you should be familiar with the setuptools_scm internals to use it.

Defaults to the value set by setuptools_scm.git.DEFAULT_DESCRIBE (see git.py).

To use setuptools_scm in other Python code you can use the get_version function:

from setuptools_scm import get_version
my_version = get_version()

It optionally accepts the keys of the use_scm_version parameter as keyword arguments.

Example configuration in setup.py format:

from setuptools import setup

setup(
    use_scm_version={
        'write_to': 'version.py',
        'write_to_template': '__version__ = "{version}"',
        'tag_regex': r'^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$',
    }
)

Environment variables

SETUPTOOLS_SCM_PRETEND_VERSION:

when defined and not empty, its used as the primary source for the version number in which case it will be a unparsed string

SETUPTOOLS_SCM_DEBUG:

when defined and not empty, a lot of debug information will be printed as part of setuptools_scm operating

Extending setuptools_scm

setuptools_scm ships with a few setuptools entrypoints based hooks to extend its default capabilities.

Adding a new SCM

setuptools_scm provides two entrypoints for adding new SCMs:

setuptools_scm.parse_scm

A function used to parse the metadata of the current workdir using the name of the control directory/file of your SCM as the entrypoint’s name. E.g. for the built-in entrypoint for git the entrypoint is named .git and references setuptools_scm.git:parse

The return value MUST be a setuptools_scm.version.ScmVersion instance created by the function setuptools_scm.version:meta.

setuptools_scm.files_command

Either a string containing a shell command that prints all SCM managed files in its current working directory or a callable, that given a pathname will return that list.

Also use then name of your SCM control directory as name of the entrypoint.

Version number construction

setuptools_scm.version_scheme

Configures how the version number is constructed given a setuptools_scm.version.ScmVersion instance and should return a string representing the version.

Available implementations:

guess-next-dev:

Automatically guesses the next development version (default). Guesses the upcoming release by incrementing the pre-release segment if present, otherwise by incrementing the micro segment. Then appends .devN.

post-release:

generates post release versions (adds .postN)

python-simplified-semver:

Basic semantic versioning. Guesses the upcoming release by incrementing the minor segment and setting the micro segment to zero if the current branch contains the string 'feature', otherwise by incrementing the micro version. Then appends .devN. Not compatible with pre-releases.

release-branch-semver:

Semantic versioning for projects with release branches. The same as guess-next-dev (incrementing the pre-release or micro segment) if on a release branch: a branch whose name (ignoring namespace) parses as a version that matches the most recent tag up to the minor segment. Otherwise if on a non-release branch, increments the minor segment and sets the micro segment to zero, then appends .devN.

setuptools_scm.local_scheme

Configures how the local part of a version is rendered given a setuptools_scm.version.ScmVersion instance and should return a string representing the local version. Dates and times are in Coordinated Universal Time (UTC), because as part of the version, they should be location independent.

Available implementations:

node-and-date:

adds the node on dev versions and the date on dirty workdir (default)

node-and-timestamp:

like node-and-date but with a timestamp of the form {:%Y%m%d%H%M%S} instead

dirty-tag:

adds +dirty if the current workdir has changes

no-local-version:

omits local version, useful e.g. because pypi does not support it

Importing in setup.py

To support usage in setup.py passing a callable into use_scm_version is supported.

Within that callable, setuptools_scm is available for import. The callable must return the configuration.

# content of setup.py
import setuptools

def myversion():
    from setuptools_scm.version import get_local_dirty_tag
    def clean_scheme(version):
        return get_local_dirty_tag(version) if version.dirty else '+clean'

    return {'local_scheme': clean_scheme}

setup(
    ...,
    use_scm_version=myversion,
    ...
)

Note on testing non-installed versions

While the general advice is to test against a installed version, some environments require a test prior to install,

$ python setup.py egg_info
$ PYTHONPATH=$PWD:$PWD/src pytest

Interaction with Enterprise Distributions

Some enterprise distributions like RHEL7 and others ship rather old setuptools versions due to various release management details.

On such distributions one might observe errors like:

:code:setuptools_scm.version.SetuptoolsOutdatedWarning: your setuptools is too old (<12)

In those case its typically possible to build by using a sdist against setuptools_scm<2.0. As those old setuptools versions lack sensible types for versions, modern setuptools_scm is unable to support them sensibly.

In case the project you need to build can not be patched to either use old setuptools_scm, its still possible to install a more recent version of setuptools in order to handle the build and/or install the package by using wheels or eggs.

Code of Conduct

Everyone interacting in the setuptools_scm project’s codebases, issue trackers, chat rooms, and mailing lists is expected to follow the PyPA Code of Conduct.

Security Contact

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.

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

setuptools_scm-4.1.1.tar.gz (48.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

setuptools_scm-4.1.1-py3.9.egg (52.3 kB view details)

Uploaded Egg

setuptools_scm-4.1.1-py3.8.egg (52.3 kB view details)

Uploaded Egg

setuptools_scm-4.1.1-py3.7.egg (52.1 kB view details)

Uploaded Egg

setuptools_scm-4.1.1-py3.6.egg (52.0 kB view details)

Uploaded Egg

setuptools_scm-4.1.1-py3.5.egg (52.8 kB view details)

Uploaded Egg

setuptools_scm-4.1.1-py2.py3-none-any.whl (27.6 kB view details)

Uploaded Python 2Python 3

setuptools_scm-4.1.1-py2.7.egg (52.1 kB view details)

Uploaded Egg

File details

Details for the file setuptools_scm-4.1.1.tar.gz.

File metadata

  • Download URL: setuptools_scm-4.1.1.tar.gz
  • Upload date:
  • Size: 48.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for setuptools_scm-4.1.1.tar.gz
Algorithm Hash digest
SHA256 65005ecfde4b2e45370cbc118ff5bbfa2740e7c7ed85c7da574e6fd244c4c7b8
MD5 61355bd13001eac2997204dea213154e
BLAKE2b-256 e2223c318bc7123014e032cd4c2ae90e030a5c9f864cd733aca0c991da2c978b

See more details on using hashes here.

File details

Details for the file setuptools_scm-4.1.1-py3.9.egg.

File metadata

  • Download URL: setuptools_scm-4.1.1-py3.9.egg
  • Upload date:
  • Size: 52.3 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for setuptools_scm-4.1.1-py3.9.egg
Algorithm Hash digest
SHA256 21a5f539d42feb1891e05d9fc03099338e5ca409b75c70b2274bf0f56efe36d1
MD5 0095daee43278e991ece34b50b10b4d2
BLAKE2b-256 59de3386f543a232613671a6ae4ce01bcca79aa72dbf5f7e9999cf4a2dccafaa

See more details on using hashes here.

File details

Details for the file setuptools_scm-4.1.1-py3.8.egg.

File metadata

  • Download URL: setuptools_scm-4.1.1-py3.8.egg
  • Upload date:
  • Size: 52.3 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for setuptools_scm-4.1.1-py3.8.egg
Algorithm Hash digest
SHA256 3ae7a2c889a33c72181b683e3cfd570e00a18b57169139e4ef77a37482c98bb3
MD5 7870ceeacaaf028452bfec17b87d5407
BLAKE2b-256 f6f7dc97ae7939fca5dbf2eb8a1f0d261a9ac1cb71714130922bbfc1e5c4d46b

See more details on using hashes here.

File details

Details for the file setuptools_scm-4.1.1-py3.7.egg.

File metadata

  • Download URL: setuptools_scm-4.1.1-py3.7.egg
  • Upload date:
  • Size: 52.1 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for setuptools_scm-4.1.1-py3.7.egg
Algorithm Hash digest
SHA256 ae4c33ff8f1ab4eca2dd7e7f7ff8b3f765766230fe13a1d23c41ca976a47b3bc
MD5 097dbe6f65633b837df63b7692937f0d
BLAKE2b-256 a7c3448c1099dd6897e270277c363e5673d7cae4a3804a6bf9e5ff214f3aaa32

See more details on using hashes here.

File details

Details for the file setuptools_scm-4.1.1-py3.6.egg.

File metadata

  • Download URL: setuptools_scm-4.1.1-py3.6.egg
  • Upload date:
  • Size: 52.0 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for setuptools_scm-4.1.1-py3.6.egg
Algorithm Hash digest
SHA256 b485b8b8b05fa119c8b67ad3c23e47ee7424fd81a292234e201c5a99830b9017
MD5 e538f4f00296443441bfedb686b15c2d
BLAKE2b-256 ad27d591068201368e6d63afeea127863d4ac7e75bf8c7ae81c0d256d0655494

See more details on using hashes here.

File details

Details for the file setuptools_scm-4.1.1-py3.5.egg.

File metadata

  • Download URL: setuptools_scm-4.1.1-py3.5.egg
  • Upload date:
  • Size: 52.8 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for setuptools_scm-4.1.1-py3.5.egg
Algorithm Hash digest
SHA256 5e1c7d6cbad00458a6e3d32426203147e072bf49eff1cab426efb3d4d754bdc6
MD5 15303a4f43274b4ea542635c42dfd56c
BLAKE2b-256 9ea5fe024bf670173a7d541b42b6f0ee1c60e16878cf145bf2383188ba9e3f1d

See more details on using hashes here.

File details

Details for the file setuptools_scm-4.1.1-py2.py3-none-any.whl.

File metadata

  • Download URL: setuptools_scm-4.1.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 27.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for setuptools_scm-4.1.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 a2c0f4e51b3d7fe18303375fff582ca4d8450d4e153e22ef01c71ee3403d93d8
MD5 7765fab0686853984053a53e8e56ca58
BLAKE2b-256 17e7453068431e84588c8931f130022f3cda3759facc38bde69926140b3187f0

See more details on using hashes here.

File details

Details for the file setuptools_scm-4.1.1-py2.7.egg.

File metadata

  • Download URL: setuptools_scm-4.1.1-py2.7.egg
  • Upload date:
  • Size: 52.1 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for setuptools_scm-4.1.1-py2.7.egg
Algorithm Hash digest
SHA256 25484c46873f35ee5715cc0861c93a37fa4ee9885c6384b284927e40f657d220
MD5 efcd386eb7ed0a52054638557a389df6
BLAKE2b-256 cff7ec4079b85a6c9e75d31479989223a60a18c915f22f337ebcb2f08d6d9294

See more details on using hashes here.

Supported by

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