GitHunt
BM

bmiklautz/setuptools-git-versioning

Automatically set package version using git tag/hash

setuptools-git-versioning

PyPI version
PyPI - Python Version
Build Status

Automatically set package version using git tag/hash

Compairing with other packages

Package/Function Lastest release Python2 support Python3 support PEP 440 compatible Separated template for not tagged HEAD Separated template for dirty run Using functions outside setup.py Returning fixed version if no tags Returning callback if no tags Reading VERSION file if no tags Counting commits from latest VERSION file change if no tags
setuptools-git-versioning 2020 + + + + + + + + + +
setuptools-git-ver (Base package) 2020 - + + + + - - - - -
even-better-setuptools-git-version 2019 - + + - - + + - - -
better-setuptools-git-version 2018 - + + - - + + - - -
very-good-setuptools-git-version 2018 - + - - - + - - - -
setuptools-git-version 2018 + + - - - - - - - -

Installation

No need.

Adding setup_requires=['setuptools-git-versioning'] somewhere in setup.py will automatically download the latest version from PyPi and save it in the .eggs folder when setup.py is run.

Usage

To just use the default templates for versioning:

setuptools.setup(
    ...
    version_config=True,
    ...
    setup_requires=['setuptools-git-versioning'],
    ...
)

Changing templates (also shows the defaults):

setuptools.setup(
    ...
    version_config={
        "template": "{tag}",
        "dev_template": "{tag}.dev{ccount}+git.{sha}"
        "dirty_template": "{tag}.dev{ccount}+git.{sha}.dirty",
        "starting_version": "0.0.1",
        "version_callback": None,
        "version_file": None,
        "count_commits_from_version_file": False
    },
    ...
    setup_requires=['setuptools-git-versioning'],
    ...
)

Templates

  • template: used if no untracked files and latest commit is tagged

  • dev_template: used if no untracked files and latest commit isn't tagged

  • dirty_template: used if untracked files exist or uncommitted changes have been made

  • starting_version: static value, used if not tags exist in repo

  • version_callback: variable or callback function to get version instead of using starting_version

  • version_file: path to VERSION file, to read version from it instead of using static_version

  • count_commits_from_version_file: True to fetch version_file last commit instead of tag commit, False overwise. Example:

    You have a project there tags are added to master branch only (e.g. '1.0.0').
    But you also wish to build development version (e.g. '1.0.0.dev0') from each commit to dev branch.
    But you don't want neither setup tag with CI/CD for every commit to dev branch, nor set such tags manually.
    So just fill up version_file, set count_commits_from_version_file to True and that's all.

Format Options

  • {tag}: Latest tag in the repository

  • {ccount}: Number of commits since last tag or last version_file commit (see count_commits_from_version_file)

  • {sha}: First 8 characters of the sha hash of the latest commit

  • {branch}: Current branch name

Languages

Python100.0%

Contributors

MIT License
Created November 24, 2020
Updated November 24, 2020
bmiklautz/setuptools-git-versioning | GitHunt