Metadata-Version: 1.1
Name: makeapp
Version: 1.4.1
Summary: Simplifies Python application rollout and publishing.
Home-page: https://github.com/idlesign/makeapp
Author: Igor `idle sign` Starikov
Author-email: idlesign@yandex.ru
License: BSD
Description: makeapp
        =======
        https://github.com/idlesign/makeapp
        
        
        .. image:: https://idlesign.github.io/lbc/py2-lbc.svg
           :target: https://idlesign.github.io/lbc/
           :alt: LBC Python 2
        
        
        |release| |lic| |ci| |coverage|
        
        .. |release| image:: https://img.shields.io/pypi/v/makeapp.svg
            :target: https://pypi.python.org/pypi/makeapp
        
        .. |lic| image:: https://img.shields.io/pypi/l/makeapp.svg
            :target: https://pypi.python.org/pypi/makeapp
        
        .. |ci| image:: https://img.shields.io/travis/idlesign/makeapp/master.svg
            :target: https://travis-ci.org/idlesign/makeapp
        
        .. |coverage| image:: https://img.shields.io/coveralls/idlesign/makeapp/master.svg
            :target: https://coveralls.io/r/idlesign/makeapp
        
        
        Description
        ------------
        
        *Simplifies Python application rollout and publishing.*
        
        * Make a skeleton for your new application with one console command.
        * Automatically create a VCS repository for your application.
        * Automatically check whether the chosen application name is not already in use.
        * Customize new application layouts with skeleton templates.
        * Put some skeleton default settings into a configuration file not to mess with command line switches anymore.
        * Easily add entries to your changelog.
        * Publish your application to remotes (VCS, PyPI) with single command.
        
        
        Application scaffolding
        -----------------------
        
        Scaffold a new application:
        
        .. code-block:: bash
        
            $ makeapp new my_new_app /home/librarian/mynewapp/ -d "My application." --author "The Librarian"
        
        
        This will create a decent application skeleton using the default skeleton template (``setup.py``, docs, tests, etc.)
        and initialize Git repository.
        
        ``makeapp`` bundles some commonly used templates for apps using: ``pytest``, ``click``, ``Django``, etc.
        
        Multiple templates can be used together. Complete list of featured templates can be found in the documentation.
        User-made templates are also supported.
        
        
        Application publishing
        ----------------------
        
        When you're ready to publish issue the following command while in project directory (containing ``setup.py``):
        
        .. code-block:: bash
        
            $ makeapp release
        
        
        This will automatically:
        
        * bump up application version number
        * tag version in VCS
        * push sources to remote repository
        * upload application package to PyPI
        
        
        Adding changes
        --------------
        
        When you're ready to add another entry to your changelog use ``change`` command:
        
        .. code-block:: bash
        
            $ makeapp change "+ New 'change' command implemented"
        
        This will also stage and commit all changed files.
        
        
        Bash completion
        ---------------
        
        To enable bash completion for ``makeapp`` command append the following line into your ``.bashrc``:
        
        .. code-block:: bash
        
            eval "$(_MAKEAPP_COMPLETE=source makeapp)"
        
        
        Documentation
        -------------
        
        https://makeapp.readthedocs.org/
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
