Metadata-Version: 1.0
Name: django-dpaste
Version: 0.2.1
Summary: A django pastebin application.
Home-page: http://github.com/bartTC/django-paste/
Author: Martin Mahner
Author-email: martin@mahner.org
License: UNKNOWN
Description: ==================================
        dpaste - code pastebin application
        ==================================
        
        Originally inspired by dpaste.com this application adds the ability to:
        
        - See the differences between snippets
        - A history of snippets as a tree
        - See your latest 25 snippets (admin setting)
        - A huge bunch of syntax highlighters (lexers)
        - User defined settings to change the font-family as well as font-sizes
        - Nice colors
        - Multilangual interface
        - per-user defined expiration of snippets
        
        Installation:
        =============
        
        1. Add ``dpaste`` to your pythonpath.
        2. Add ``dpaste`` to your ``INSTALLED_APPS`` in your django project settings.
        3. Add this line to your urlsconf::
        
        (r'^mypaste/', include('dpaste.urls')),
        
        Requirements:
        =============
        
        - `django-mptt`_ for the nested-set history tree
        - Pygments_ for syntax highlighting
        
        .. _`django-mptt`: http://code.google.com/p/django-mptt/
        .. _Pygments: http://pygments.org/
        
        Latest version:
        ===============
        
        The primary repository is located on Github: http://github.com/bartTC/django-paste/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
