Metadata-Version: 1.1
Name: django-autotag
Version: 0.1
Summary: A simple Django app to conduct Web-based autotagging.
Home-page: http://www.example.com/
Author: Your Name
Author-email: jvalansi+autotag_app@gmail.com
License: BSD License
Description: =======
        Autotag
        =======
        
        Autotag is a simple Django app to conduct Web-based automatic tagging. 
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "autotag_app" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'autotag_app',
            )
        
        2. Include the polls URLconf in your project urls.py like this::
        
            url(r'^autotag_app/', include('autotag_app.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/autotag_app/ to participate in the autotag_app.
        
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
