utility to generate python package version infos from mercurial/git tags
Project description
This module is a simple drop-in to support setup.py in mercurial based projects.
Alternatively it can be a setup time requirement.
Its supposed to generate version numbers from mercurials meta-data. It tries to use the current tag and falls back to the next reachable tagged ancestor and using the distance to it as .post marker.
It uses 4 strategies to archive its task:
try to directly ask hg for the tag/distance
try to infer it from the .hg_archival.txt file
try to use the cache file if it exists
try to read the version from the ‘PKG-INFO’ file sdists contain (this is a nasty abuse)
The most simple usage is:
from setuptools import setup from hgdistver import get_version setup( ..., version=get_version(), ..., )
get_version takes the optional argument cachefile, which causes it to store the version info in a python script instead of abusing PKG-INFO from a sdist.
The setup requirement usage is:
from setuptools import setup setup( ..., get_version_from_hg=True, setup_requires=['hgdistver'], ..., )
The requirement uses the setup argument cache_hg_version_to instead of cachefile.
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
Built Distribution
Hashes for hgdistver-0.18-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e4ca4fef5d865591c09c5edbf1acfa5ff0b5ac2fc98446310f1f511eb8758cd |
|
MD5 | 39104fb71f3abe9ab46b048de021b555 |
|
BLAKE2b-256 | 6666345f5a5225e3b57b0bf86e819c8f6cc13ff1e83a162b5605ca79f8b10c8e |