Metadata-Version: 1.1
Name: django-ibge
Version: 0.2
Summary: Django application to provide information from Brazilian Institute of Geography and Statistics (IBGE).
Home-page: https://bitbucket.org/semente/django-ibge/
Author: Guilherme Gondim
Author-email: semente+django-ibge@taurinus.org
License: GNU General Public License (GPL), Version 3
Download-URL: https://bitbucket.org/semente/django-ibge/downloads/
Description: ===========
        Django IBGE
        ===========
        
        **Django IBGE** is a pluggable application for `Django Web Framework` that
        provides information from Brazilian Institute of Geography and Statistics
        (IBGE).
        
        Project page:
            http://bitbucket.org/semente/django-ibge
        
        Django Web Framework:
            http://www.djangoproject.com
        
        
        Upgrading to version 0.2
        ========================
        
        Django IBGE 0.2 adds a new field (slug) so you must update your database.
        
        South users
        -----------
        
        Run the migrate exactly like that::
        
          python manage.py migrate ibge --fake 0001
          python manage.py migrate ibge
        
        Note: you must fake the migration 0001 since South migrations was introduced in
        the new version.
        
        Non-South users
        ---------------
        
        Open the database shell::
        
          python manage.py dbshell
        
        and run the following SQL command::
        
          ALTER TABLE ibge_municipio ADD COLUMN slug VARCHAR(64);
        
        
        Copying conditions
        ==================
        
        Django IBGE is free software; you can redistribute it and/or modify it under
        the terms of the GNU General Public License as published by the Free
        Software Foundation; either version 3 of the License, or (at your option) any
        later version.
        
        Django IBGE is distributed in the hope that it will be useful, but WITHOUT
        ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
        FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
        
        You should have received a copy of the GNU General Public License along with
        this program; see the file COPYING. If not, see http://www.gnu.org/licenses/
        
Keywords: django apps ibge
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
