Metadata-Version: 1.1
Name: django-webmaster-verification
Version: 0.1
Summary: Webmaster tools verification for Django
Home-page: http://github.com/nkuttler/django-webmaster-verification
Author: Nicolas Kuttler
Author-email: pypi@nicolaskuttler.com
License: BSD
Description: ===========
        README
        ===========
        
        This application allows various webmaster tools to verify that a django site is managed by you.
        
        Google and Bing webmaster tools are supported. The only supported method of verification is accessing an html or xml file on your server. Only one verification code is supported at the moment.
        
        - `Google Webmaster Tools <https://www.google.com/webmasters/tools/home>`_
        - `Bing Webmaster Tools <https://ssl.bing.com/webmaster/Home/>`_
        
        Usage
        -----
        
        Get ``django-webmaster-verification`` into your python path::
        
            pip install django-webmaster-verification
            
        Add ``webmaster_verification`` to your INSTALLED_APPS in settings.py::
        
            INSTALLED_APPS = (
                ...
                'webmaster_verification',
                ...
                )
            
        Add ``wembaster_verification`` to your root urlconf (urls.py)::
        
            urlpatterns = patterns('',
                ...,
                url(r'', include('webmaster_verification.urls')),
                ...,        
            )
        
        Add settings just as::
        
            WEBMASTER_VERIFICATION = {
                'google': '<google verification code>',
                'bing': '<bing verification code>',
            }
        
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: Framework :: Django
