Metadata-Version: 1.0
Name: django-photos
Version: 0.1.1
Summary: This is a simple photo-app for django.
Home-page: http://www.bitbucket.org/feuervogel/django-photos
Author: Julian Moritz
Author-email: jumo@gmx.de
License: BSD
Description: Installation
        ------------
        
        Install *django-photos* via `pip` from the repository::
        
        	pip install -e hg+http://bitbucket.org/feuervogel/django-photos#egg=django-photos
        
        It comes with `django-pagination`, `easy_thumbnails` and `django-taggit`. 
        	
        Add all apps to your INSTALLED_APPS in your `settings.py`::
        
        	INSTALLED_APPS = (
        		# ...,
        		'photos',
        		'taggit',
        		'pagination',
        		'easy_thumbnails',        
        		# ...,
        	)
        	
        Add `pagination.middleware.PaginationMiddleware` to your MIDDLEWARE_CLASSES and make sure that `django.core.context_processors.request` is in the list of TEMPLATE_CONTEXT_PROCESSORS.
        
        Run `python manage.py syncdb` to sync the database::
        
        	python manage.py syncdb
        	
        Take care that MEDIA_ROOT and MEDIA_URL are set and the files are served.
        
        Finally add `photos.urls` to your *urls.py*::
        
        	urlpatterns = patterns('',
        		# ...,
        		(r'^photos/', 'photos.urls'),
        		# ...,
        	)
        	
        For more information read the (not yet available) docs.
        
        .. This is your project NEWS file which will contain the release notes.
        .. Example: http://www.python.org/download/releases/2.6/NEWS.txt
        .. The content of this file, along with README.rst, will appear in your
        .. project's PyPI page.
        
        News
        ====
        
        0.2a1
        -----
        
        *Release date: UNRELEASED*
        
        * Example news entry for the in-development version
        
        
        0.1
        ---
        
        *Release date: 15-Mar-2010*
        
        * Example news entry for a released version
        
        
Keywords: django photo gallery
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
