Metadata-Version: 1.1
Name: bootstrap-py
Version: 0.4.0
Summary: Bootstrap Python package
Home-page: https://github.com/mkouhei/bootstrap-py
Author: Kouhei Maeda
Author-email: mkouhei@palmtb.net
License: UNKNOWN
Description: ==========================
         Bootstrap Python Package
        ==========================
        
        The ``bootstrap-py`` provides generating the Python packages.
        
        Status
        ======
        
        .. image:: https://secure.travis-ci.org/mkouhei/bootstrap-py.png?branch=master
           :target: http://travis-ci.org/mkouhei/bootstrap-py
        .. image:: https://coveralls.io/repos/mkouhei/bootstrap-py/badge.png?branch=master
           :target: https://coveralls.io/r/mkouhei/bootstrap-py?branch=master
        .. image:: https://img.shields.io/pypi/v/bootstrap-py.svg
           :target: https://pypi.python.org/pypi/bootstrap-py
        .. image:: https://readthedocs.org/projects/bootstrap-py/badge/?version=latest
           :target: https://readthedocs.org/projects/bootstrap-py/?badge=latest
           :alt: Documentation Status
        
        Notes
        =====
        
        Genateed package with v0.3.0 or less that has bugs Sphinx documentation.
        Modify the follows manually.
        
        * Fixes ``docs/source/index.rst``::
        
            diff --git a/docs/source/index.rst b/docs/source/index.rst
            index b3404ac..d8bdc83 100644
            --- a/docs/source/index.rst
            +++ b/docs/source/index.rst
            @@ -16,8 +16,8 @@ Contents:
            
                CHANGELOG
            
            - Indices and tables
            -===================
            +Indices and tables
            +==================
            
             * :ref:`genindex`
             * :ref:`modindex`
        
        * Renames ``docs/source/README`` to ``docs/source/README.rst``.
        
        
        Requirements
        ============
        
        * Python 2.7 over or Python 3.3 over or PyPy 2.4.0 over
        
        Features
        ========
        
        * Generating Python package.
        * Checking Python package name existence at PyPI.
        * Test and conde checking environment is configured with the `Tox <https://pypi.python.org/pypi/tox>`_, `Pytest <http://pytest.org/latest-ja/>`_, and others.
            
          * `pytest-cov <https://pypi.python.org/pypi/pytest-cov>`_
          * `pytest-pep8 <https://pypi.python.org/pypi/pytest-pep8>`_
          * `pytest-flakes <https://pypi.python.org/pypi/pytest-flakes>`_
          * `Pylint <http://www.pylint.org/>`_
          * `PyChecker <http://pychecker.sourceforge.net/>`_
          * `pep257 <https://github.com/GreenSteam/pep257/>`_
        
        * Generating documentation automatically with the `Sphinx <http://www.sphinx-doc.org/en/stable/>`_.
        * Configuration Git repository, initial commit.
        
        Usage
        =====
        
        Install bootstrap-py
        --------------------
        
        Install bootstrap-py::
        
          $ virtualenv venv
          $ . venv/bin/activate
          (venv)$ pip install bootstrap-py
        
        
        Generate Python package
        -----------------------
        
        Generate your Python package.::
        
          (venv)$ bootstrap-py create -a 'Your author name' -e 'your-author-email@example.org' \
          -u 'https://your-package-website.example.org' -o '/path/to/package-dir' \
          -l 'select-the-license' 'your-package-name'
          (venv)$ deactivate
          $ cd /path/to/package-dir
          $ ls
          MANIFEST.in  docs     pytest.ini  setup.py  utils
          README.rst   libneta  setup.cfg   tox.ini
        
        
        List license choices
        --------------------
        
        List license description choices.::
        
          (venv)$ bootstrap-py list -l
          GPL        : GNU General Public License (GPL)
          CPL        : Common Public License
          IOSL       : Intel Open Source License
          GPLv3+     : GNU General Public License v3 or later (GPLv3+)
          (omit)
        
        
        Using tox
        ---------
        
        Running test with tox::
        
          $ pip install --user tox
          $ tox
          (omit)
          _______________________________________ summary ______________________________________
          py27: commands succeeded
          py34: commands succeeded
          py35: commands succeeded
          pypy: commands succeeded
          pep257: commands succeeded
          docs: commands succeeded
          pychecker: commands succeeded
          congratulations :)
        
        ChangeLog
        =========
        
        0.4.0 (2016-03-07)
        ------------------
        
        * Adds checking latest version.
        * Fixes Sphinx template bugs.
        * Does some refactoring.
        
        0.3.0 (2016-02-21)
        ------------------
        
        * git init and initial commit.
        * Adds --no-check option.
        * Fixes list subcommand.
        
        0.2.1 (2016-02-16)
        ------------------
        
        * Fixes failing create sub-command.
        
        0.2.0 (2016-02-15)
        ------------------
        
        * Adds create, list sub-command.
        
          * "create":  generating Python package.
          * "list":    Print license description for choices.
        
        * Changes mutually exclusive group; username, url options.
        * Add checking package name in PyPI.
        * Adds some exception handling.
        
        0.1.1 (2016-02-02)
        ------------------
        
        * Fixes README template
        
        
        0.1.0 (2016-02-02)
        ------------------
        
        * First release
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
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 :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development
Classifier: Topic :: System :: Archiving :: Packaging
Classifier: Topic :: System :: Software Distribution
