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'],
        ...,
    )

    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__},
        setup_requires=['setuptools_scm'],
        ...,
    )
  3. Access the version number in your package via pkg_resources

    E.g. (PEP-0396):

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

Programmatic usage

In order to use setuptools_scm from code that 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.

Usage from sphinx

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

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 readthedocs sometimes change the workingdirectory 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 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}+{scm letter}{revision hash}

no distance and not clean:

{tag}+dYYYMMMDD

distance and not clean:

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

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

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):
        return dirty_tag(version) if version.dirty else '+clean'

    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.6.tar.gz (25.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-1.15.6-py3.6.egg (26.9 kB view details)

Uploaded Egg

setuptools_scm-1.15.6-py3.5.egg (27.4 kB view details)

Uploaded Egg

setuptools_scm-1.15.6-py3.4.egg (27.5 kB view details)

Uploaded Egg

setuptools_scm-1.15.6-py3.3.egg (28.0 kB view details)

Uploaded Egg

setuptools_scm-1.15.6-py2.py3-none-any.whl (19.8 kB view details)

Uploaded Python 2Python 3

setuptools_scm-1.15.6-py2.7.egg (27.0 kB view details)

Uploaded Egg

setuptools_scm-1.15.6-py2.6.egg (27.1 kB view details)

Uploaded Egg

File details

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

File metadata

File hashes

Hashes for setuptools_scm-1.15.6.tar.gz
Algorithm Hash digest
SHA256 49ab4685589986a42da85706b3311a2f74f1af567d39fee6cb1e088d7a75fb5f
MD5 f17493d53f0d842bb0152f214775640b
BLAKE2b-256 036daafdd01edd227ee879b691455bf19895091872af7e48192bea1758c82032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setuptools_scm-1.15.6-py3.6.egg
Algorithm Hash digest
SHA256 8f6270dfadb363d5dc75696e36131d614e975495deac126d913479aedda737ac
MD5 342049ba90a3dde0d6372456fe92884a
BLAKE2b-256 6c8c86bb5eb353184a8cfb6488d8f1d286e2028907c6d24fc9e604e6aa40ac8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setuptools_scm-1.15.6-py3.5.egg
Algorithm Hash digest
SHA256 393585ffa3877b2997e5d9e0c3f1aeb34726328ed98c31c6d574504c01f5e63e
MD5 3738e83e378468afd04247fc1f6e8471
BLAKE2b-256 81bbd084991afb55c4726d1a5e6f411bf98f75116b23f3215470d641cce84ed5

See more details on using hashes here.

File details

Details for the file setuptools_scm-1.15.6-py3.4.egg.

File metadata

File hashes

Hashes for setuptools_scm-1.15.6-py3.4.egg
Algorithm Hash digest
SHA256 3dc14aea0ffc7cb05a874270390c7a53f8e5940889f3e0d1099c76ef1d64ba3f
MD5 3f33f7daf48cad451a36aef2c83c0e1d
BLAKE2b-256 c485fadc75fcca601f4e4fb775068f5d5c49a73058e90450a87a8a378d7a1aaa

See more details on using hashes here.

File details

Details for the file setuptools_scm-1.15.6-py3.3.egg.

File metadata

File hashes

Hashes for setuptools_scm-1.15.6-py3.3.egg
Algorithm Hash digest
SHA256 85a76a91a90a0136bbd8f5e6965e21a44210fb6eac9a1ba7aa73ed934cdc3156
MD5 c81d3a6effbb771ee95ea0ba26b56d41
BLAKE2b-256 4134e7cb05eef1db42c2a52965aa7b747c67e3d591515c43e11b1ad7be81d72e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setuptools_scm-1.15.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 dac89650c7909d238965e163e10b736cbd3a72f28e2dd5c0fea6cf5e49e8562e
MD5 80a7d9093268fd4d8fee6ce2a7bb0ee1
BLAKE2b-256 546600a0e93b02409454af83cfbd782887b5b131dd915af23d53c6651d7cc039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setuptools_scm-1.15.6-py2.7.egg
Algorithm Hash digest
SHA256 aacf974155145299476415483d589b40b72fd2b88c61ac64d956885a9ad2953e
MD5 7eaa86e817a5d3f68aa69d77b4430bf3
BLAKE2b-256 f24df79818ef2f6c129e81cc2d7622fa195fa4511457f1fb8140129f568bcf7c

See more details on using hashes here.

File details

Details for the file setuptools_scm-1.15.6-py2.6.egg.

File metadata

File hashes

Hashes for setuptools_scm-1.15.6-py2.6.egg
Algorithm Hash digest
SHA256 cf33fe2700eb86f8df24bd1817b799275ff5c7df81285e0e2fe936ab682e1d83
MD5 83d7365ed86a7847e8d838a56562419d
BLAKE2b-256 164ec023700958861d2ab52a985e1a15c42809fec9c3b80aae3812ff88efaf2c

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