Installation Instructions
=========================

The easiest way to install mortar_rdb is::

  easy_install mortar_rdb

Or, if you're using `zc.buildout`, just specify ``mortar_rdb`` as a
required egg. 

If you're developing a package or application that relies on mortar_rdb,
then add it as a dependency in your package's :file:`setup.py`, for example::

  from setuptools import setup, find_packages

  setup(
     # ...
    install_requires = [
        'mortar_rdb',
       ])

.. note:: 

  This package requires Python 2.6 or newer, but does not work Python
  3 or above. 

  It also requires :mod:`SQLAlchemy` 0.6.5 or above and
  :mod:`sqlachemy-migrate` 0.6.1 or above.
