Metadata-Version: 1.1
Name: django-note
Version: 1.1.1
Summary: A simple Django app to conduct Web-based note lists.
Home-page: https://www.example.com/
Author: Skochinskyi Dmytro
Author-email: skodmy@gmail.com
License: GPL-3.0
Description: =====
        Note
        =====
        
        Note is a simple Django app to conduct Web-based notes.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "note" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'note',
            ]
        
        2. Include the todo URLconf in your project urls.py like this::
        
            url(r'^note/', include(note.urls, namespace='note')),
        
        3. Run `python manage.py migrate` to create the note models.
        
        4. Start the project's server and login on your django-website.
        
        5. Visit https://your_django_website_url_part/note/ to use the note app.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
