Metadata-Version: 2.1
Name: alem
Version: 0.0.3.dev0
Summary: A revision wrapper of alembic
Home-page: https://github.com/Asphaltt/alem.py
Author: Leon Huayra
Author-email: hffilwlqm@gmail.com
License: MIT
Keywords: SQLAlchemy migrations alembic
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Database :: Front-Ends
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Requires-Dist: alembic

Alem is a simple revision wrapper of `Alembic <https://github.com/sqlalchemy/alembic>`_.

Usage:

Install by pip, "pip install alem".
Then you get a command "alem".

Difference from Alembic:

* Add two arguments for Alembic subcommand revision, "--upgrade"/"-U" and 
  "--downgrade"/"-D". They accept a string, separated by ";" for multiple sql
  statements, or a file path of sql file. Sql statements in sql file can be
  multiple lines or one line. You can ignore them as you want.
  Attention: comment in sql file is not supported yet.

The rest is to use it as Alembic.


