summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorjan.dittberner <unknown>2008-02-06 18:39:07 +0000
committerjan.dittberner <unknown>2008-02-06 18:39:07 +0000
commit2cfe1fc31c0dfa8241200f635d8e7f6cfce2b507 (patch)
tree69541da758ab44652badc59ec0ce659364bdfe7f /setup.py
downloadsqlalchemy-migrate-2cfe1fc31c0dfa8241200f635d8e7f6cfce2b507.tar.gz
moved trunk, branches and tags to project root
fixes Issue #5
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..882e47a
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,37 @@
+#!/usr/bin/python
+from setuptools import setup,find_packages
+
+# Pudge
+try:
+ import buildutils
+except ImportError:
+ pass
+
+setup(
+ name = "sqlalchemy-migrate",
+ version = "0.4.0dev",
+ packages = find_packages(exclude=['test*']),
+ scripts = ['shell/migrate'],
+ include_package_data = True,
+ description = "Database schema migration for SQLAlchemy",
+ long_description = """
+Inspired by Ruby on Rails' migrations, Migrate provides a way to deal with database schema changes in `SQLAlchemy <http://sqlalchemy.org>`_ projects.
+
+Migrate extends SQLAlchemy to have database changeset handling. It provides a database change repository mechanism which can be used from the command line as well as from inside python code.
+""",
+
+ install_requires = ['sqlalchemy >= 0.4.0'],
+ setup_requires = ['py >= 0.9.0-beta'],
+ dependency_links = [
+ "http://codespeak.net/download/py/",
+ ],
+
+ author = "Evan Rosson",
+ author_email = "evan.rosson@gmail.com",
+ url = "http://code.google.com/p/sqlalchemy-migrate/",
+ maintainer = "Jan Dittberner",
+ maintainer_email = "jan@dittberner.info",
+ license = "MIT",
+
+ test_suite = "py.test.cmdline.main",
+)