Metadata-Version: 1.1
Name: nextversion
Version: 0.3
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.::
        
        .. code-block:: python
        
            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
        -----------------
        
        .. code-block:: bash
        
            $ pip install nextversion
        
        Install from Github repo
        ------------------------
        
        .. code-block:: bash
        
            $ 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>`_ CPAN module
        
        Author
        ======
        
        Sho Nakatani <lay.sakura@gmail.com>, a.k.a. @laysakura
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: License :: OSI Approved :: Apache Software License
