Metadata-Version: 2.0
Name: cookiepatcher
Version: 0.2.0
Summary: Just a small shim around cookiecutter that alters a bit the CLI to work better when reapplying templates to existing projects. Works best with cookiecutter-pylibrary.
Home-page: https://github.com/ionelmc/python-cookiepatcher
Author: Ionel Cristian Mărieș
Author-email: contact@ionelmc.ro
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
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 :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Dist: aspectlib
Requires-Dist: click
Requires-Dist: cookiecutter (>=1.3.0)

=============
Cookiepatcher
=============

.. list-table::
    :stub-columns: 1

    * - docs
      - |docs|
    * - tests
      - | |travis| |appveyor| |requires|
        | |coveralls| |codecov|
    * - package
      - |version| |downloads| |wheel| |supported-versions| |supported-implementations|

.. |docs| image:: https://readthedocs.org/projects/python-cookiepatcher/badge/?style=flat
    :target: https://readthedocs.org/projects/python-cookiepatcher
    :alt: Documentation Status

.. |travis| image:: https://travis-ci.org/ionelmc/python-cookiepatcher.svg?branch=master
    :alt: Travis-CI Build Status
    :target: https://travis-ci.org/ionelmc/python-cookiepatcher

.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/ionelmc/python-cookiepatcher?branch=master&svg=true
    :alt: AppVeyor Build Status
    :target: https://ci.appveyor.com/project/ionelmc/python-cookiepatcher

.. |requires| image:: https://requires.io/github/ionelmc/python-cookiepatcher/requirements.svg?branch=master
    :alt: Requirements Status
    :target: https://requires.io/github/ionelmc/python-cookiepatcher/requirements/?branch=master

.. |coveralls| image:: https://coveralls.io/repos/ionelmc/python-cookiepatcher/badge.svg?branch=master&service=github
    :alt: Coverage Status
    :target: https://coveralls.io/r/ionelmc/python-cookiepatcher

.. |codecov| image:: https://codecov.io/github/ionelmc/python-cookiepatcher/coverage.svg?branch=master
    :alt: Coverage Status
    :target: https://codecov.io/github/ionelmc/python-cookiepatcher

.. |landscape| image:: https://landscape.io/github/ionelmc/python-cookiepatcher/master/landscape.svg?style=flat
    :target: https://landscape.io/github/ionelmc/python-cookiepatcher/master
    :alt: Code Quality Status

.. |codacy| image:: https://img.shields.io/codacy/REPLACE_WITH_PROJECT_ID.svg?style=flat
    :target: https://www.codacy.com/app/ionelmc/python-cookiepatcher
    :alt: Codacy Code Quality Status

.. |codeclimate| image:: https://codeclimate.com/github/ionelmc/python-cookiepatcher/badges/gpa.svg
   :target: https://codeclimate.com/github/ionelmc/python-cookiepatcher
   :alt: CodeClimate Quality Status

.. |version| image:: https://img.shields.io/pypi/v/cookiepatcher.svg?style=flat
    :alt: PyPI Package latest release
    :target: https://pypi.python.org/pypi/cookiepatcher

.. |downloads| image:: https://img.shields.io/pypi/dm/cookiepatcher.svg?style=flat
    :alt: PyPI Package monthly downloads
    :target: https://pypi.python.org/pypi/cookiepatcher

.. |wheel| image:: https://img.shields.io/pypi/wheel/cookiepatcher.svg?style=flat
    :alt: PyPI Wheel
    :target: https://pypi.python.org/pypi/cookiepatcher

.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/cookiepatcher.svg?style=flat
    :alt: Supported versions
    :target: https://pypi.python.org/pypi/cookiepatcher

.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/cookiepatcher.svg?style=flat
    :alt: Supported implementations
    :target: https://pypi.python.org/pypi/cookiepatcher

.. |scrutinizer| image:: https://img.shields.io/scrutinizer/g/ionelmc/python-cookiepatcher/master.svg?style=flat
    :alt: Scrutinizer Status
    :target: https://scrutinizer-ci.com/g/ionelmc/python-cookiepatcher/

Just a small shim around cookiecutter that alters a bit the CLI to work better when reapplying templates to existing projects. Works best
with cookiecutter-pylibrary.

* Free software: BSD license

Installation
============

::

    pip install cookiepatcher

Documentation
=============

Usage: ``cookiepatcher [OPTIONS] TEMPLATE TARGET``

Args:

.. list-table::
    :stub-columns: 1

    * - ``TARGET``
      - Directory where to look for ``.cookiecutterrc``.
    * - ``TEMPLATE``
      - Name of cookiecutter template.


Options:

  -V, --version        Show the version and exit.
  --no-input           Do not prompt for parameters and only use
                       cookiecutter.json file content
  -c, --checkout TEXT  branch, tag or commit to checkout after git clone
  -v, --verbose        Print debug information
  --help               Show this message and exit.


Development
===========

To run the all tests run::

    tox


Changelog
=========

0.2.0 (2015-11-19)
------------------

* Remove some workarounds. Requires ``cookiecutter>=1.3.0``.

0.1.1 (2015-11-05)
------------------

* Force `utf8` in various places.

0.1.0 (2015-10-19)
------------------

* First release on PyPI.


