Metadata-Version: 2.0
Name: versiontag
Version: 1.2.0
Summary: Simple git tag based version numbers
Home-page: https://github.com/thelabnyc/python-versiontag
Author: Craig Weber
Author-email: crgwbr@gmail.com
License: ISC
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6

Versiontag
==========

Python project versioning for lazy people
-----------------------------------------

|  |license| |kit| |format| |downloads| |travisci|

.. |license| image:: https://img.shields.io/pypi/l/versiontag.svg
    :target: https://pypi.python.org/pypi/versiontag
.. |kit| image:: https://badge.fury.io/py/versiontag.svg
    :target: https://pypi.python.org/pypi/versiontag
.. |format| image:: https://img.shields.io/pypi/format/versiontag.svg
    :target: https://pypi.python.org/pypi/versiontag
.. |downloads| image:: https://img.shields.io/pypi/dm/versiontag.svg?maxAge=2592000
    :target: https://pypi.python.org/pypi/versiontag
.. |travisci| image:: https://travis-ci.org/thelabnyc/python-versiontag.svg
    :target: https://travis-ci.org/thelabnyc/python-versiontag


What's versiontag?
------------------

Versiontag is an ultra-simple library design to make accessing the current
version number of your software easy.


Why do I need it?
-----------------

Version numbers are all too often duplicated among setup.py, git tags, and
other sources of truth. This library makes it possible to consolidate on git
tags as a single source of truth regarding version numbers. That decreases the
likely hood of making errors when publishing new package versions.

**Full Documentation**: https://python-versiontag.readthedocs.io


