Metadata-Version: 2.1
Name: core_module_raw_xml_app
Version: 2.11.0
Summary: Raw xml module for the parser core project
Home-page: https://github.com/usnistgov/core_module_raw_xml_app
Author: NIST IT Lab
Author-email: itl_inquiries@nist.gov
License-File: LICENSE.md
Requires-Dist: Django
Requires-Dist: core-module-text-area-app==2.11.*

core_module_raw_xml_app
=======================

Raw XML module for the parser core project.

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

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

.. code:: python

    INSTALLED_APPS = [
      ...
      'core_module_raw_xml_app',
    ]

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

.. code:: python

    url(r'^', include('core_module_raw_xml_app.urls')),
