Skip to main content

the blessed package to manage your versions by scm tags

Project description

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.

It also handles file finders for the supported scm’s.

https://travis-ci.org/pypa/setuptools_scm.svg?branch=master

Setup.py usage

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

  1. Add 'setuptools_scm' to the setup_requires parameter

  2. Add the use_scm_version parameter and set it to True

    E.g.:

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

Programmatic usage

In order to use setuptools_scm for sphinx config, assuming the sphinx conf is one directory deeper than the project’s root, use:

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

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 3 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}+n{revision hash}

no distance and not clean:

{tag}+dYYYMMMDD

distance and not clean:

{next_version}.dev{distance}+n{revision hash}.dYYYMMMDD

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

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

Configuration Parameters

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

The Currently supported configuration keys are:

root:

cwd relative path to use 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:

declares a text file or python file which is replaced with a file containing the current version. its ideal or creating a version.py file within the package

write_to_template:

a newstyle format string thats given the current version as the version keyword argument for formatting

relative_to:

a file from which root may be resolved. typically called by a script or module that is not in the root of the repository to direct setuptools_scm to the root of the repository by supplying __file__.

parse:

a function that will be used instead of the discovered scm for parsing the version, use with caution, this is a expert function and you should be closely familiar with the setuptools_scm internals to use it

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.

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

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 2 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.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.version.ScmVersion instance and should return a string representing the version.

Available implementations:

guess-next-dev:

automatically guesses the next development version (default)

post-release:

generates post release versions (adds postN)

setuptools_scm.local_scheme

Configures how the local part of a version is rendered given a setuptools.version.ScmVersion instance and should return a string representing the local version.

Available implementations:

node-and-date:

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

dirty-tag:

adds +dirty if the current workdir has changes

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.

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

    return {'local_scheme': clean_scheme}

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.

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-1.15.0rc1.tar.gz (22.3 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-1.15.0rc1-py3.5.egg (24.4 kB view details)

Uploaded Egg

setuptools_scm-1.15.0rc1-py3.4.egg (24.4 kB view details)

Uploaded Egg

setuptools_scm-1.15.0rc1-py3.3.egg (24.8 kB view details)

Uploaded Egg

setuptools_scm-1.15.0rc1-py2.py3-none-any.whl (17.0 kB view details)

Uploaded Python 2Python 3

setuptools_scm-1.15.0rc1-py2.7.egg (23.9 kB view details)

Uploaded Egg

setuptools_scm-1.15.0rc1-py2.6.egg (24.0 kB view details)

Uploaded Egg

File details

Details for the file setuptools_scm-1.15.0rc1.tar.gz.

File metadata

File hashes

Hashes for setuptools_scm-1.15.0rc1.tar.gz
Algorithm Hash digest
SHA256 15b86974351d8607101fc5a193237868e493dd9946e118f7b472f30151f5e30f
MD5 c1b1b089e31ed048aaadaad3ebe4acb3
BLAKE2b-256 70bcf34b06274c1260c5e4842f789fb933a09b89f23549f282b36a15bdf63614

See more details on using hashes here.

File details

Details for the file setuptools_scm-1.15.0rc1-py3.5.egg.

File metadata

File hashes

Hashes for setuptools_scm-1.15.0rc1-py3.5.egg
Algorithm Hash digest
SHA256 38f87229d10b0aa76ca5f8142e31592f0ef0b27b0e4bc16790d2b33f98966932
MD5 130ecbd0fae23bf36f101c246f158048
BLAKE2b-256 3cc74ae7a61976a3e9f46dfa63ecff6704af06f5505617ca37ef552757494261

See more details on using hashes here.

File details

Details for the file setuptools_scm-1.15.0rc1-py3.4.egg.

File metadata

File hashes

Hashes for setuptools_scm-1.15.0rc1-py3.4.egg
Algorithm Hash digest
SHA256 720f4669d07bbd725e73fc9de4d30b1d8a2fcd6f237b86325a323fa1804226c1
MD5 dea80a917372f3b2d8a1177ee6969edc
BLAKE2b-256 3b36f99bdeee80667338fbc263f75ba98871cd5fd892d8d38959bcc566b67fcf

See more details on using hashes here.

File details

Details for the file setuptools_scm-1.15.0rc1-py3.3.egg.

File metadata

File hashes

Hashes for setuptools_scm-1.15.0rc1-py3.3.egg
Algorithm Hash digest
SHA256 ac7c323d036f08af2671a979b2eb2a857df4e11375688bfc42898ba1a11df95e
MD5 114453a9e38f1bbcb1e0b50b41bb9c50
BLAKE2b-256 19050f00d945eebb14e0b34410a6f9f3c70fa7c416418792bf2819f3b9c1e259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setuptools_scm-1.15.0rc1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 fe1dc1aa24d2d56b059cd29f38bf9a93ed2e445ae162252158158d1d51f16ac6
MD5 cc3f5539b3dcdaa3687085559ff6684b
BLAKE2b-256 613b191890df546c19c735e844aa082f93e4318eb9543b1f00e469b65c40a7e3

See more details on using hashes here.

File details

Details for the file setuptools_scm-1.15.0rc1-py2.7.egg.

File metadata

File hashes

Hashes for setuptools_scm-1.15.0rc1-py2.7.egg
Algorithm Hash digest
SHA256 9693a391c5649b0ec7ab44fcd71788bf1de45effdd86f36dc2ffe734178045a2
MD5 8dd999635438b0c653e4abe6a1beb910
BLAKE2b-256 874ebaf01e8339670e456efcee29853d99600437241930278343dc40b70cf2e5

See more details on using hashes here.

File details

Details for the file setuptools_scm-1.15.0rc1-py2.6.egg.

File metadata

File hashes

Hashes for setuptools_scm-1.15.0rc1-py2.6.egg
Algorithm Hash digest
SHA256 de3232a581860f585a9a8199cc50aeb0465315a319b8c554e74e27cf6c876b1e
MD5 23e9a278551458b40b98e1d18d532aaf
BLAKE2b-256 2f1487244616c841cf733e8354581e6a0064fd568e93453bb5add568ac129036

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