Metadata-Version: 2.1
Name: releasecmd
Version: 0.0.11
Summary: Release command for setuptools.setup which create a tag and push, and upload packages to PyPI
Home-page: https://github.com/thombashi/releasecmd
Author: Tsuyoshi Hombashi
Author-email: tsuyoshi.hombashi@gmail.com
License: MIT License
Project-URL: Tracker, https://github.com/thombashi/releasecmd/issues
Description: releasecmd
        ============================================
        .. image:: https://badge.fury.io/py/releasecmd.svg
            :target: https://badge.fury.io/py/releasecmd
        
        .. image:: https://img.shields.io/pypi/pyversions/releasecmd.svg
           :target: https://pypi.python.org/pypi/releasecmd
        
        Summary
        ---------
        ``releasecmd`` will add ``release`` subcommand to
        ``setup.py`` (``setuptools.setup``) by ``releasecmd.ReleaseCommand`` class.
        The class is implemented as a subclass of ``setuptools.Command`` class.
        The ``release`` subcommand does the following:
        
        1. create a git tag from version information in ``__version__.py``
        2. push git tags
        3. upload package files to PyPI by using ``twine``
        
        
        Example
        ============================================
        - https://github.com/thombashi/typepy/blob/master/setup.py
        
        .. code-block::
        
            $ python setup.py release
            [reading ./typepy/__version__.py]
            [pushing git tags: v0.0.26]
            [upload packages to PyPI]
        
        
        Dependencies
        ============================================
        - `twine <https://twine.readthedocs.io/>`__
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
Provides-Extra: build
