Metadata-Version: 1.1
Name: django-comments-easy
Version: 0.3
Summary: A simple Django plugin app for comments on any object.
Home-page: https://www.apoorvapandey.tk/
Author: Apoorva Pandey
Author-email: apoorvapandey365@gmail.com
License: BSD License
Description: Quick start
        -----------
        
        1. Add the following to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'django.contrib.humanize',
            	'django_commentseasy',
            	'bootstrap3',
            ]
        
        2. Include the django_commentseasy URLconf in your project urls.py like this::
        
            url(r'^comment/', include('django_commentseasy.urls')),
        
        3. Run `python manage.py migrate` to create the models.
        
        4. Start the development server
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
