Metadata-Version: 1.1
Name: punch.py
Version: 1.0.1
Summary: Update your version while having a drink
Home-page: https://github.com/lgiordani/punch
Author: Leonardo Giordani
Author-email: giordani.leonardo@gmail.com
License: MIT
Description: Punch
        =====
        
        |Build Status| |Version|
        
        Update your version while having a drink
        
        About punch
        -----------
        
        Punch is a configurable version updater, and you can use to automate the
        management of your project's version number.
        
        Punch stores the version of your project in its own file. Each time you
        need to update it, Punch runs through the configured files and replaces
        the old version with the new one. Additionally, Punch may also
        automatically commit the version change on your VCS of choice.
        
        This project has been heavily inspired by
        `bumpversion <https://github.com/peritus/bumpversion>`__, and I want to
        thank Filip Noetzel, the author of that project for his work and the
        inspiring ideas.
        
        Installation
        ------------
        
        Punch is available for both Python 2 and Python 3 through pip. Just
        create a virtual environment and run
        
        .. code:: sh
        
            pip install punch.py
        
        To start working with Punch you need a configuration file and a version
        file. You may ask Punch to create the two files for you with reasonable
        starting values with the flag ``--init``
        
        .. code:: sh
        
            punch --init
        
        which will create the ``punch_config.py`` and ``punch_version.py`` files
        in the current directory.
        
        .. |Build Status| image:: https://travis-ci.org/lgiordani/punch.svg?branch=master
           :target: https://travis-ci.org/lgiordani/punch
        .. |Version| image:: https://img.shields.io/pypi/v/punch.svg
           :target: https://github.com/lgiordani/punch
        
        
        =======
        History
        =======
        
        1.0.0 (2016-05-19)
        ------------------
        
        * First release on PyPI.
        
Keywords: version,management
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
