]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
add front matter
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 21 Nov 2011 03:03:09 +0000 (22:03 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 21 Nov 2011 03:03:09 +0000 (22:03 -0500)
docs/build/front.rst [new file with mode: 0644]
docs/build/index.rst
docs/build/tutorial.rst

diff --git a/docs/build/front.rst b/docs/build/front.rst
new file mode 100644 (file)
index 0000000..854e475
--- /dev/null
@@ -0,0 +1,45 @@
+============
+Front Matter
+============
+
+Information about the Alembic project.
+
+Project Homepage
+================
+
+Alembic is hosted on `Bitbucket <http://bitbucket.org>`_ - the lead project page is at https://bitbucket.org/zzzeek/alembic.  Source
+code is tracked here using `Mercurial <http://mercurial.selenic.com/>`_.
+
+Releases and project status are available on Pypi at http://pypi.python.org/pypi/alembic.
+
+The most recent published version of this documentation should be at http://packages.python.org/alembic/.
+
+.. _installation:
+
+Installation
+============
+
+Install released versions of Alembic from the Python package index with `pip <http://pypi.python.org/pypi/pip>`_ or a similar tool::
+
+    pip install alembic
+
+Installation via source distribution is via the ``setup.py`` script::
+
+    python setup.py install
+
+The install will add the ``alembic`` command to the environment.  All operations with Alembic
+then proceed through the usage of this command.
+
+Community
+=========
+
+Alembic is developed by `Mike Bayer <http://techspot.zzzeek.org>`_, and is 
+loosely associated with the `SQLAlchemy <http://www.sqlalchemy.org/>`_ and `Pylons <http://www.pylonsproject.org>`_
+projects. 
+As Alembic's usage increases, it is anticipated that the SQLAlchemy mailing list and IRC channel
+will become the primary channels for support.
+
+Bugs
+====
+Bugs and feature enhancements to Alembic should be reported on the `Bitbucket
+issue tracker <https://bitbucket.org/zzzeek/alembic/issues?status=new&status=open>`_.  
index 4ff3820f665f609fc95a0f8764867f08eee61a8e..596e783284d4c5310ece093c5fc04b2a301e03dd 100644 (file)
@@ -8,6 +8,7 @@ with the `SQLAlchemy <http://www.sqlalchemy.org>`_ Database Toolkit for Python.
 .. toctree::
    :maxdepth: 2
 
+   front
    tutorial
    ops
    api
index 2b2eb63986d8c35283d855ab8f159fe3269bcc9f..470adb49f3337963914868d6f6f206134632773d 100644 (file)
@@ -6,15 +6,7 @@ Tutorial
 scripts for a relational database, using `SQLAlchemy <http://www.sqlalchemy.org>`_ as the underlying engine.
 This tutorial will provide a full introduction to the theory and usage of this tool.
 
-Installation
-============
-
-Install Alembic with `pip <http://pypi.python.org/pypi/pip>`_ or a similar tool::
-
-    pip install alembic
-
-The install will add the ``alembic`` command to the environment.  All operations with Alembic
-then proceed through the usage of this command.
+To begin, make sure Alembic is installed as described at :ref:`installation`.
 
 The Migration Environment
 ==========================