diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,7 @@ except ImportError: setup( name = "sqlalchemy-migrate", - version = "0.4.6", + version = "0.5", packages = find_packages(exclude=['test*']), include_package_data = True, description = "Database schema migration for SQLAlchemy", @@ -19,8 +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.3.10'], - setup_requires = ['py >= 0.9.0-beta'], + install_requires = ['sqlalchemy >= 0.4'], + setup_requires = [], dependency_links = [ "http://codespeak.net/download/py/", ], |
