summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authoriElectric <unknown>2010-07-08 00:09:26 +0200
committeriElectric <unknown>2010-07-08 00:09:26 +0200
commit960bce7de1049151b0bdec7b40cf6fc68fc8a879 (patch)
tree66d538bfad79aca0d6e0e4d127cfc60baa7d8fb3 /setup.py
parent472952672f76a4e733b487a6ef48caef3de3f01f (diff)
downloadsqlalchemy-migrate-960bce7de1049151b0bdec7b40cf6fc68fc8a879.tar.gz
remove test dependencies information from setup.py
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 09c4801..8359ddc 100644
--- a/setup.py
+++ b/setup.py
@@ -9,8 +9,6 @@ except ImportError:
use_setuptools()
from setuptools import setup, find_packages
-# NOTE: scripttest 1.0.1 removes base_path argument to ScriptTest
-test_requirements = ['nose >= 0.10', 'ScriptTest==1.0']
required_deps = ['sqlalchemy >= 0.5', 'decorator', 'tempita']
readme_file = open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README'))
@@ -22,7 +20,6 @@ setup(
description = "Database schema migration for SQLAlchemy",
long_description = readme_file.read(),
install_requires = required_deps,
- tests_require = test_requirements,
extras_require = {
'docs' : ['sphinx >= 0.5'],
},