Metadata-Version: 1.1
Name: django-pt
Version: 0.1
Summary: A simple, Django-powered project tracking solution.
Home-page: https://github.com/fstraw/django-pt
Author: Brandon Batt
Author-email: brbatt@gmail.com
License: MIT
Description: =====
        pt
        =====
        
        pt is a simple, Django-powered project tracking solution.
        
        [![Build Status](https://travis-ci.org/fstraw/django-pt.svg?branch=master)](https://travis-ci.org/fstraw/django-pt)
        
        Documentation
        -------------
        
        Coming soon!
        
        Demo
        ----
        
        [http://www.lowestfrequency.com/pt](http://lowestfrequency.com/pt "PT Demo")
        
        
        Quickstart
        ----------
        
        1. Add `pt` to `INSTALLED_APPS` in `settings.py`:
        
        > 		INSTALLED_APPS = {
        > 		...
        > 		'pt'
        > 		}
        
        Add 'pt/templates/pt' to `TEMPLATES` in `settings.py`:
        
        >       TEMPLATES = [
        > 	    {
        > 	        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        > 	        'DIRS': ['pt/templates/pt/'],
        > 	        ...
        > 	        }
        
        Include the `pt` URLconf in urls.py:
          
        >       url(r'^pt/', include('pt.urls'))
        
        
        2. Run `python manage.py migrate` to migrate pt's models.
        
        3. Run `python manage.py createsuperuser` to set up initial login.
        
        4. Start tracking!
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
