Metadata-Version: 2.1
Name: core-composer-app
Version: 2.21.0
Summary: Template and type composer for the curator core project
Home-page: https://github.com/usnistgov/core_composer_app
Author: NIST IT Lab
Author-email: itl_inquiries@nist.gov
License-File: LICENSE.md

=================
Core Composer App
=================

Template and type composer for the curator core project.

Quick start
===========

1. Add "core_composer_app" to your INSTALLED_APPS setting
---------------------------------------------------------

.. code:: python

    INSTALLED_APPS = [
      ...
      'core_composer_app',
    ]

2. Include the core_composer_app URLconf in your project urls.py
----------------------------------------------------------------

.. code:: python

    url(r'^composer/', include('core_composer_app.urls')),
