Metadata-Version: 1.1
Name: hexomega
Version: 0.2
Summary: A package to streamline creation of projects and tasks for Murdoch University.
Home-page: https://www.github.com/defstryker/Hex-Omega
Author: Abhi Rudra
Author-email: defstryker@hotmail.com
License: MIT License
Description: ========
        HexOmega
        ========
        
        HexOmega is a simple, turn-key task management django app written for 
        Murdoch University. 
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "users" and "log" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'users',
                'log',
            ]
        
        2. Include the users URLconf in your project urls.py like this::
        
            url(r'', include('users.urls')),
        
        3. Run `python manage.py migrate` to create the users models.
        
        4. Run `python manage.py setup_init` to create default users and the roles table.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
