Metadata-Version: 2.1
Name: sqlalchemy_schemadisplay
Version: 1.3
Summary: Turn SQLAlchemy DB Model into a graph
Home-page: https://github.com/fschulze/sqlalchemy_schemadisplay
Author: Florian Schulze
Author-email: florian.schulze@gmx.net
License: MIT License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Database :: Front-Ends
Classifier: Operating System :: OS Independent
License-File: LICENSE
Requires-Dist: setuptools
Requires-Dist: pydot



Turn SQLAlchemy DB Model into a graph.

See http://www.sqlalchemy.org/trac/wiki/UsageRecipes/SchemaDisplay


Changelog
=========

1.3 - 2016-01-27
----------------

- Fix warning about illegal attribute in uml generation by using correct
  attribute.
  [electrocucaracha - Victor Morales]

- Use MIT license
  [fschulze]


1.2 - 2014-03-02
----------------

- Compatibility with SQLAlchemy 0.9.
  [fschulze]

- Compatibility with SQLAlchemy 0.8.
  [Surgo - Kosei Kitahara]

- Leave tables out even when a foreign key points to them but they are not in
  the table list.
  [tiagosab - Tiago Saboga]


1.1 - 2011-10-12
----------------

- New option to skip inherited attributes.
  [nouri]

- Quote class name, because some names like 'Node' confuse dot.
  [nouri - Daniel Nouri]


1.0 - 2011-01-07
----------------

- Initial release
  [fschulze - Florian Schulze]

- Original releases as recipe on SQLAlchemy Wiki by Ants Aasma
