Metadata-Version: 1.0
Name: django-autoload-fixtures
Version: 0.1.3
Summary: This library allows you to load initial Fixtures automagically after the South migrate your Model.
Home-page: https://github.com/luanfonceca/django-autoload-fixtures
Author: Luan Fonseca
Author-email: luanfonceca@gmail.com
License: BSD
Description: Autoload-Fixtures
        ====================
        
        This library allows you to load initial Fixtures automagically after the `South` migrate your `Model`
        
        
        ##How To use
        1.  Instal this app from Pypi
        
          `$ pip install autoload_fixtures`
        2.   Set the new app inside your `INSTALLED_APPS`.
        
          ```python
          INSTALLED_APPS = (
                ...
                'autoload_fixtures',
                ...
          )
          ```
        3.  Create the `MODELNAME.json` files inside your `project/app/fixtures/` dir.
        4.  Migrate your project
        
          `python manage.py migrate`
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
