summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authoriElectric <unknown>2009-06-08 13:08:32 +0000
committeriElectric <unknown>2009-06-08 13:08:32 +0000
commitd835658f238f62f0d38305b7bb6f399c589fb367 (patch)
tree88f1bf6353b5879908e677baedc55cecea75cddd /setup.py
parentbc1edc5c1b027c2d203b6f041839098c32c01e8c (diff)
downloadsqlalchemy-migrate-d835658f238f62f0d38305b7bb6f399c589fb367.tar.gz
fix setup.py
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 8f9d884..d3c5295 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ except ImportError:
test_requirements = ['nose >= 0.10']
required_deps = ['sqlalchemy >= 0.5', 'decorator']
-readme_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README')
+readme_file = open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README'))
setup(
name = "sqlalchemy-migrate",