From f1039d3f858167d0ee72fa8a6a1b5dcc31088b38 Mon Sep 17 00:00:00 2001 From: "jan.dittberner" Date: Tue, 6 Jan 2009 21:44:27 +0000 Subject: [PATCH] Depend on SQLAlchemy >= 0.5 at runtime and nose for setup --- setup.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index e206179..d05133e 100644 --- a/setup.py +++ b/setup.py @@ -19,11 +19,8 @@ Inspired by Ruby on Rails' migrations, Migrate provides a way to deal with datab 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'], - setup_requires = [], - dependency_links = [ - "http://codespeak.net/download/py/", - ], + install_requires = ['sqlalchemy >= 0.5'], + setup_requires = ['nose >= 0.10'], author = "Evan Rosson", author_email = "evan.rosson@gmail.com",