Metadata-Version: 1.1
Name: django-socialize
Version: 0.5.0
Summary: A Django app to create social networks with social authentication.
Home-page: http://www.efforia.com.br/opensource/
Author: William Oliveira de Lagos
Author-email: william@efforia.com.br
License: LGPLv3 License
Description: =====
        Socialize
        =====
        
        Socialize is a Django app to create social networks with social authentication.
        
        Quick start
        -----------
        
        1. Add "socialize" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'socialize',
            )
        
        2. Include the socialize URLconf in your project urls.py like this::
        
            url(r'^socialize/', include('socialize.urls')),
        
        3. Run `python manage.py syncdb` to create the socialize models.
        
        5. Visit http://127.0.0.1:8000/ to view a sample with social authentications
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
