Metadata-Version: 2.0
Name: django-click
Version: 0.1.0
Summary: Helpers for dealing with application settings
Home-page: https://github.com/GaretJax/django-click
Author: Jonathan Stoppani
Author-email: jonathan@stoppani.name
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: six (>=1.9.0)

============
Django Click
============

.. image:: https://img.shields.io/travis/GaretJax/django-click.svg
   :target: https://travis-ci.org/GaretJax/django-click

.. image:: https://img.shields.io/pypi/v/django-click.svg
   :target: https://pypi.python.org/pypi/django-click

.. image:: https://img.shields.io/pypi/dm/django-click.svg
   :target: https://pypi.python.org/pypi/django-click

.. image:: https://img.shields.io/coveralls/GaretJax/django-click/master.svg
   :target: https://coveralls.io/r/GaretJax/django-click?branch=master

.. image:: https://img.shields.io/badge/docs-latest-brightgreen.svg
   :target: http://django-click.readthedocs.org/en/latest/

.. image:: https://img.shields.io/pypi/l/django-click.svg
   :target: https://github.com/GaretJax/django-click/blob/develop/LICENSE

.. image:: https://img.shields.io/requires/github/GaretJax/django-click.svg
   :target: https://requires.io/github/GaretJax/django-click/requirements/?branch=master

.. .. image:: https://img.shields.io/codeclimate/github/GaretJax/django-click.svg
..   :target: https://codeclimate.com/github/GaretJax/django-click

django-click is a library to easily write django management commands using the
click command line library.

* Free software: MIT license
* Documentation: http://django-click.rtfd.org


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

::

  pip install django-click


Example
=======

Create a command module as you would usually do, but instead of creating a
class, just put a djclick command into it::

   import djclick as click

   @click.command()
   @click.argument('name')
   def command(name):
      click.secho('Hello, {}'.format(name), fg='red')


=======
History
=======


0.1.0 – Unreleased
==================

* Initial release


