Metadata-Version: 1.1
Name: North
Version: 0.0.3
Summary: Another way to migrate Django databases
Home-page: http://north.lino-framework.org
Author: Luc Saffre
Author-email: luc.saffre@gmail.com
License: Free BSD
Description: North is a Python code serializer/deserializer for Django which lets 
        you write intelligent fixtures and generate database dumps. 
        You can use it to provide automated database migrations, which makes 
        it an alternative to `South <http://south.aeracode.org/>`__
        
        North includes an optional single-table solution for handling multilingual 
        database content.
        
        North doesn't require any database model, it is not even a Django app. 
        Basic usage in your `settings.py` file is::
        
          from north import Site
          SITE = Site(__file__,globals(),'myapp1','myapp2',...)
          # your settings here
              
        See the `Usage <http://site.lino-framework.org/usage.html>` page
        for `django-site` which applies entirely for a `North` site.
        
        North works by adding a new serialization format "py" 
        to Django's `SERIALIZATION_MODULES` setting.
        You can then specify this in the `--format` option of 
        Django's `dump` command::
        
          manage.py dump --format py
        
        Instantiating a North Site will install sensible default values 
        for certain Django settings, including `INSTALLED_APPS` and 
        `SERIALIZATION_MODULES`.
Platform: UNKNOWN
Classifier:   Programming Language :: Python
Classifier:   Programming Language :: Python :: 2.6
Classifier:   Programming Language :: Python :: 2.7
Classifier:   Development Status :: 4 - Beta
Classifier:   Environment :: Web Environment
Classifier:   Framework :: Django
Classifier:   Intended Audience :: Developers
Classifier:   Intended Audience :: System Administrators
Classifier:   License :: OSI Approved :: BSD License
Classifier:   Natural Language :: English
Classifier:   Operating System :: OS Independent
Classifier:   Topic :: Database :: Front-Ends
Classifier:   Topic :: Software Development :: Libraries :: Application Frameworks
Requires: Django
Requires: django_site (==0.0.3)
