Metadata-Version: 2.0
Name: django-cml
Version: 0.1
Summary: App for data exchange in CommerceML 2 standard..
Home-page: https://github.com/ArtemiusUA/django-cml
Author: Artem Merkulov
Author-email: artem.merkulov@gmail.com
License: BSD License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content

===
CML
===

CML is an app for data exchange in CommerceML 2 standard.

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "cml" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'cml',
    ]

2. Include the cml URLconf in your project urls.py like this:

    url(r'^cml/', include('cml.urls')),

3. Run `python manage.py migrate` to create the cml models.

4. Create a cml-pipelines.py file with 'python manage.py cmlpipelines' and add it to settings file like this:

    CML_PROJECT_PIPELINES = 'project.cml_pipelines'

5. Modify pipeline objects for your needs to stack this with your models


