Metadata-Version: 1.1
Name: agape-django
Version: 0.2.9
Summary: Collection of reusable Django Applications for RAD
Home-page: https://github.com/codewiseio/agape-django
Author: Jeffrey Ray Hallock
Author-email: codewiseio@gmail.com
License: MIT License
Description-Content-Type: UNKNOWN
Description: # Agape
        
        
        Agape is collection of Django apps to use for building modern
        web applications.
        
        
        ## Quick start
        
        
        1. Add the desired applications into the INSTALLED_APPS setting like this:
        
            INSTALLED_APPS = [
                ...
                'agape.authentication',
            ]
        
        2. Include the URLconf in your project urls.py like this:
        
            url(r'^/api/v1/', include('agape.authentication.urls')),
        
        
        3. Run `python manage.py migrate` to create the models.
        
        4. Start the development server and visit http://127.0.0.1:8000/
        
        
        ## Dependencies
        
        
        
        
        ## Developer Instructions
        
        ### Testing
        
        python runtests.py 
        
        python runtests.py agape.authentication
        
        python runtests.py agape.[module]
        
        ### Packaging & Distribution
        
        #### Package only
        python setup.py sdist
        
        #### Package and submit to PyPi repository
        python setup.py sdist upload -r pypi
        
        ### Installation
        
        #### Install locally
        
        pip install ../django-agape/dist/django-agape-*.tar.gz
        
        #### Install from PyPi
        
        pip install django-agape
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 :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
