Metadata-Version: 2.0
Name: cosinnus-core
Version: 0.7.dev20180519132751
Summary: cosinnus core application
Home-page: UNKNOWN
Author: Sinnwerkstatt Medienagentur GmbH Berlin
Author-email: web@sinnwerkstatt.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
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.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Framework :: Django
Requires-Dist: Django (==1.8.18)
Requires-Dist: MarkupSafe (==0.18)
Requires-Dist: Pillow (==2.6.1)
Requires-Dist: django-annoying (==0.7.6)
Requires-Dist: django-appconf (==0.6)
Requires-Dist: django-awesome-avatar
Requires-Dist: django-bootstrap3
Requires-Dist: django-bootstrap3-datetimepicker (==2.2.0)
Requires-Dist: django-classy-tags (==0.4)
Requires-Dist: django-compressor (==1.5)
Requires-Dist: django-cron (==0.5.0)
Requires-Dist: django-djajax
Requires-Dist: django-embed-video (==0.6)
Requires-Dist: django-endless-pagination (==2.0)
Requires-Dist: django-extra-views (==0.6.3)
Requires-Dist: django-filer (==0.9.12)
Requires-Dist: django-filter (==0.11.0)
Requires-Dist: django-haystack (==2.3.1)
Requires-Dist: django-markdown2 (==0.3.0)
Requires-Dist: django-model-utils (==1.5.0)
Requires-Dist: django-modelcluster (==1.0)
Requires-Dist: django-multiform
Requires-Dist: django-osm-field
Requires-Dist: django-overextends (==0.4.0)
Requires-Dist: django-phonenumber-field (==1.1.0)
Requires-Dist: django-polymorphic (==0.7.2)
Requires-Dist: django-sekizai (==0.8.2)
Requires-Dist: django-select2
Requires-Dist: django-suit (==0.2.15)
Requires-Dist: django-taggit (==0.17.3)
Requires-Dist: django-widget-tweaks (==1.3)
Requires-Dist: djangorestframework (==3.1.3)
Requires-Dist: dnspython (==1.15.0)
Requires-Dist: easy-thumbnails (==1.4)
Requires-Dist: ecdsa (==0.10)
Requires-Dist: html2text (==2016.9.19)
Requires-Dist: html5lib (==0.999)
Requires-Dist: jsonfield (==1.0.0)
Requires-Dist: jsonfield (==1.0.0)
Requires-Dist: oauthlib (==2.0.2)
Requires-Dist: paramiko (==1.12.0)
Requires-Dist: pycrypto (==2.6.1)
Requires-Dist: pydkim (==0.3)
Requires-Dist: python-dateutil (==2.4.1)
Requires-Dist: python-memcached
Requires-Dist: requests (==2.0.1)
Requires-Dist: requests-oauthlib (==0.8.0)
Requires-Dist: six (==1.8.0)
Requires-Dist: sqlparse (==0.1.10)
Requires-Dist: wagtail (==1.2)
Requires-Dist: wagtail-modeltranslation (==0.3.2)
Requires-Dist: wsgiref (==0.1.2)

============
Installation
============

.. note::

   django-bootstrap3 (https://github.com/dyve/django-bootstrap3) is the
   successor of django-bootstrap-toolkit which will not receive updates for
   bootstrap 3. Thus the new app has been created. However, the app is not yet
   Python 3 compatible. Therefore I created a fork and pull request
   (https://github.com/dyve/django-bootstrap3/pull/42). Right now the
   installation of this app must be done by hand::

      pip install -e "git+git://github.com/Markush2010/django-bootstrap3.git@develop#egg=django-bootstrap3"

   Once the pull request is merged / the app has Python 3 support we can
   activate it in the setup.py.


* Put ``'cosinnus'`` in the ``INSTALLED_APPS``
* Add ``url(r'^', include('cosinnus.urls', namespace='cosinnus')),`` to your
  ``urls.py``
* Adjust the ``TEMPLATE_CONTEXT_PROCESSORS``::

    ``TEMPLATE_CONTEXT_PROCESSORS`` = (
        ...
        'cosinnus.utils.context_processors.settings',
        'cosinnus.utils.context_processors.cosinnus',
        ...
    )


