| .. | |||||
| __pycache__ | |||||
| autogenerate | |||||
| ddl | |||||
| operations | |||||
| runtime | |||||
| script | |||||
| templates | |||||
| testing | |||||
| util | |||||
| __init__.py | |||||
| command.py | |||||
| config.py | |||||
| context.py | |||||
| op.py |
from os import path __version__ = '0.8.3' package_dir = path.abspath(path.dirname(__file__)) from . import op # noqa from . import context # noqa import sys from .runtime import environment from .runtime import migration sys.modules['alembic.migration'] = migration sys.modules['alembic.environment'] = environment
| .. | |||||
| __pycache__ | |||||
| autogenerate | |||||
| ddl | |||||
| operations | |||||
| runtime | |||||
| script | |||||
| templates | |||||
| testing | |||||
| util | |||||
| __init__.py | |||||
| command.py | |||||
| config.py | |||||
| context.py | |||||
| op.py |