Metadata-Version: 1.1
Name: django-webmention
Version: 0.0.3
Summary: A pluggable implementation of webmention for Django projects.
Home-page: https://github.com/daneah/django-webmention
Author: Dane Hillard
Author-email: github@danehillard.com
License: MIT
Description: django-webmention |PyPI version|
        ================================
        
        webmention for Django projects.
        
        Installation
        ------------
        
        ``$ pip install django-webmention``
        
        -  Add ``webmention`` to ``INSTALLED_APPS``
        -  Run ``manage.py migrate webmention``
        -  Add
           ``url(r'^webmention', include('webmention.urls', namespace='webmention'))``
           to top-level ``urls.py``
        -  Run ``manage.py test webmention`` to ensure unit tests all pass
        
        Usage
        -----
        
        -  Include webmention information by either:
        
           -  Adding ``webmention.middleware.WebMentionMiddleware`` to
              ``MIDDLEWARE_CLASSES`` (affects all views)
           -  Decorating a specific view with
              ``webmention.middleware.include_webmention_information``
        
        -  View webmention responses in the Django admin tool and mark them as
           reviewed as needed
        
        .. |PyPI version| image:: https://badge.fury.io/py/django-webmention.svg
           :target: https://badge.fury.io/py/django-webmention
        
Keywords: webmention pingback linkback blogging
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
