Metadata-Version: 2.4
Name: django-drf-cms
Version: 0.2.17
Summary: A Django app to build a simple cms restful server.
Home-page: https://www.spartanbits.com
Author: Spartanbits, SLU
Author-email: info@spartanbits.com
License: Apache-2.0
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.11
License-File: LICENSE
Requires-Dist: Django>=5.2
Requires-Dist: django_bleach>=3.1.0
Requires-Dist: djangorestframework>=3.16.1
Requires-Dist: django-modeltranslation>=0.19.0
Requires-Dist: django-storages>=1.14.6
Requires-Dist: boto3>=1.40.59
Requires-Dist: Pillow>=12.0.0
Requires-Dist: django-uuslug>=2.0.0
Dynamic: license-file

=========
DRF-CMS
=========

DRF-CMS is a Django app to manage non-relational websites content in a restful way.
Elements are key-value and linked to a page, letting the client decide how to compose them.


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

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

    INSTALLED_APPS = [
        ...
        'drf_cms',
    ]

2. Include the drf-cms URLconf in your project urls.py like this::

    path('cms/', include('drf_cms.urls')),

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


Publish instructions:
python setup.py sdist
twine upload dist/*

