Metadata-Version: 2.0
Name: cosinnus-event
Version: 0.6.dev20180515152253
Summary: cosinnus event 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: cosinnus (>=0.4.2.dev0)
Requires-Dist: django-extra-views (>=0.6.3)
Requires-Dist: django-ical (>=1.2)

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

* Add ``'cosinnus_event', 'easy-thumbnails', 'geoposition'`` to ``INSTALLED_APPS``
* Add a setting for the thumbnailer, e.g.
```python
THUMBNAIL_PROCESSORS = (
 'easy_thumbnails.processors.colorspace',
 'easy_thumbnails.processors.autocrop',
 'easy_thumbnails.processors.scale_and_crop',
 'easy_thumbnails.processors.filters',
)
```
See https://github.com/SmileyChris/easy-thumbnails for more details .
* You might want to specify another value than the default 480 for the height of the map widget:
```
GEOPOSITION_MAP_WIDGET_HEIGHT = '500'
```


