Metadata-Version: 1.1
Name: krispackage
Version: 0.1
Summary: A simple Django app that does absolutely nothing.
Home-page: https://github.com/axellerate/testing
Author: Kris Vukasinovic
Author-email: axellerate@example.com
License: BSD License
Download-URL: https://github.com/axellerate/testing/tarball/0.1
Description: =====
        Kris Package
        =====
        
        Kris Package is a simple Django app that does nothing. Sorry to disappoint.
        
        Quick start
        -----------
        
        1. Add "polls" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'krispackage',
            )
        
        2. Include the polls URLconf in your project urls.py like this::
        
            url(r'^krispackage/', include('krispackage.urls')),
        
        3. Run `python manage.py migrate` to create the polls models.
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/
           to create a poll (you'll need the Admin app enabled).
        
        5. Visit http://127.0.0.1:8000/krispackage/ to participate in the poll.
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 :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
