Metadata-Version: 1.1
Name: django-keoh-userprofile
Version: 0.0.1
Summary: A simple Django app with extended User model
Home-page: http://mznstudio.herokuapp.com
Author: Francisco Manzano Magaña
Author-email: keoh77@gmail.com
License: BSD License
Description: =====
        Keoh User Profile
        =====
        
        Keoh User Profile is a very simple app to use extended version of Django
        User model.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "user_profile" to your INSTALLED_APPS setting like this::
        
              INSTALLED_APPS = (
                  ...
                  'user_profile',
              )
        
        2. Include the user_profile URLconf in your project urls.py like this::
        
              url(r'^profile/', include('user_profile.urls', namespace='profile')),
        
        3. Run `python manage.py syncdb` to create the user-profile models.
        
        4. Start the development server and visit http://127.0.0.1:8000,
           you need to create a superuser like this::
        
           	  python manage.py createsuperuser
        
        5. Visit http://127.0.0.1:8000/admin to view the new app in Django Admin
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.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
