Metadata-Version: 1.1
Name: nextversion
Version: 0.2
Summary: A Python package to generate next version string
Home-page: https://github.com/laysakura/nextversion
Author: Sho Nakatani
Author-email: lay.sakura@gmail.com
License: LICENSE.txt
Description: nextversion
        ~~~~~~~~~~~
        
        A Python package to increments module verision numbers.::
        
            from nextversion import nextversion
            nextversion('1.0a2')    # => '1.0a3'
            nextversion('v1.0a2')   # => '1.0a3'  (normalized to compatible version with PEP 386)
            nextversion('foo.0.3')  # => None     (impossible to normalize)
        
        If original version number does not match `PEP 386 <http://www.python.org/dev/peps/pep-0386/>`_ ,
        
        1. Next version compatible with `PEP 386 <http://www.python.org/dev/peps/pep-0386/>`_ is returned if possible,
        2. If impossible, `None` is returned.
        
        Install
        =======
        
        Install from PyPI
        -----------------
        
        ::
        
            $ pip install nextversion
        
        Install from Github repo
        ------------------------
        
        ::
        
            $ git clone https://github.com/laysakura/nextversion.git
            $ cd nextversion
            $ ./setup.py install
        
        
        See also
        ========
        
        - `PEP 386 <http://www.python.org/dev/peps/pep-0386/>`_
        - `Version::Next <http://search.cpan.org/perldoc?Version::Next>`_
        
        Author
        ======
        
        Sho Nakatani <lay.sakura@gmail.com>, a.k.a. @laysakura
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Operating System :: POSIX :: Linux
Requires: verlib
