deb-alembic/alembic/__init__.py
Mike Bayer fe54b59144 - changelog: Fixed issue in autogenerate type rendering where types that belong
to modules that have the name "sqlalchemy" in them would be mistaken
as being part of the ``sqlalchemy.`` namespace.  Pull req courtesy
Bartosz Burclaf.  fixes #261
2015-01-09 11:26:36 -05:00

10 lines
136 B
Python

from os import path
__version__ = '0.7.4'
package_dir = path.abspath(path.dirname(__file__))
from . import op
from . import context