Metadata-Version: 1.1
Name: django-simple-address
Version: 0.1
Summary: A simple Django app to save US address in admin forms.
Home-page: https://github.com/avezou/django-simple-address
Author: Avezou Petit Frere
Author-email: simpleaddress@apfware.com
License: MIT License
Description: ==============================================
                        Simple-Address
        ==============================================
        
        Simple-Address is a simple Django app to save US addresses (it can
        potentially be used for others). It does not provide a front end.
        The intent of this is to be used on the admin site for invoicing
        purposes (and potentially others).
        
        Quick start
        -----------
        1. Pre-requisite:
            Make sure django-localflavor is installed and added to your INSTALLED_APPS
        
        2. Install with pip install django-simple-address
           Or clone (or download) the repository and run python setup.py install to
           install the app (preferably in virtualenv).
        
        3. Add "simple-address" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'address',
            ]
        
        
        4. Run `python manage.py migrate` to create the address models.
        
        5. Start the development server and visit http://127.0.0.1:8000/admin/
           to create addresses (you'll need the Admin app enabled).
        
        6. TODO: Add testing and frontend access.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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
