Metadata-Version: 2.0
Name: spitzer
Version: 1.0.5
Summary: Django-based multi-target migration tool
Home-page: https://github.com/feliphebueno/Spitzer
Author: Rinzler
Author-email: feliphezion@gmail.com
License: MIT
Keywords: migration,database,devops
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: Django
Requires-Dist: PyYAML
Requires-Dist: cymysql
Requires-Dist: django-cymysql
Requires-Dist: terminaltables
Provides-Extra: dev
Requires-Dist: check-manifest; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'

# Spitzer

Django-based multi-target migration tool

# Install requires
- Python 3.4+
- Django
- PyYAML
- terminaltables
- cymysql
- django-cymysq

```PHP
pip install rinzler
```

# Config

Place a copy of the sample [spitzer.yaml](https://github.com/feliphebueno/Spitzer/wiki/spitzer.yaml) at 
your app's root directory.

# Usage
```PHP
//Configure e install Spitzer
$ python -m spitzer install

//Create and register a new blank migration file
$ python -m spitzer create

//Register your self-created migration file
$ python -m spitzer make_migrations

//Execute migrations on the configured target
$ python -m spitzer migrate

//List your migrations
$ python -m spitzer show_migrations

//You will see something like this:
```
<img width="847" alt="captura de tela 2017-09-06 as 10 19 50" src="https://user-images.githubusercontent.com/6662338/30114124-41cbd75c-92ed-11e7-82ef-c05632c8e25a.png">


