Metadata-Version: 2.1
Name: django-cheetahtemplate
Version: 0.4.0
Summary: Use CheetahTemplate3 in Django
Home-page: https://github.com/CheetahTemplate3/django-cheetahtemplate
Author: Oleg Broytman
Author-email: phd@phdru.name
License: MIT
Project-URL: Download, https://pypi.org/pypi/django-cheetahtemplate
Project-URL: Issue tracker, https://github.com/CheetahTemplate3/django-cheetahtemplate/issues
Project-URL: Github repo, https://github.com/CheetahTemplate3/django-cheetahtemplate
Description: Django-CheetahTemplate
        ======================
        
        Django-CheetahTemplate is a Django template backend to use
        CheetahTemplate3_ in Django.
        
        .. _CheetahTemplate3: http://cheetahtemplate.org/
        
        It works with Python 2.7 or Python 3.4+, Django 1.11 and 2+,
        CheetahTemplate3.
        
        Install ``django-cheetahtemplate``. Add or change TEMPLATES in
        ``settings.py`` the following way:
        
        .. code-block:: python
        
            TEMPLATES = [
                {
                    'APP_DIRS': True,
                    'BACKEND': 'django_cheetahtemplate.DjangoCheetahTemplate',
                    'DIRS': [
                    ],
                    'OPTIONS': {
                    },
                },
            ]
        
        Put templates in ``cheetahtemplate`` subdirectories of installed
        applications. See
        `example <https://github.com/CheetahTemplate3/django-cheetahtemplate/tree/master/example>`_.
        
        Author: Oleg Broytman <phd@phdru.name>.
        
        Copyright (C) 2018-2022 PhiloSoft Design.
        
        License: MIT.
        
        | Home Page:     https://github.com/CheetahTemplate3/django-cheetahtemplate
        | PyPI:          https://pypi.org/pypi/django-cheetahtemplate
        
Keywords: cheetah,django,template
Platform: Any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Text Processing
Requires: Django
Requires: CT3
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/x-rst
