diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-15 19:25:34 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-15 19:25:34 -0500 |
commit | 756aa2724e495b8a969bca73d133b27615a343e7 (patch) | |
tree | 8e22e4f714c52933ab4cdca538194660524e86f1 /setup.py | |
parent | 40d5a32e59a49075129211358f00e857dac73885 (diff) | |
download | sqlalchemy-756aa2724e495b8a969bca73d133b27615a343e7.tar.gz |
first step of [ticket:1949], remove the setuptools aspect
of the plugin, move it to test/bootstrap
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -56,7 +56,7 @@ elif BUILD_CEXTENSIONS: def find_packages(dir_): packages = [] - for pkg in ['sqlalchemy', 'sqlalchemy_nose']: + for pkg in ['sqlalchemy']: for _dir, subdirectories, files in os.walk(os.path.join(dir_, pkg)): if '__init__.py' in files: lib, fragment = _dir.split(os.sep, 1) @@ -88,11 +88,6 @@ setup(name = "SQLAlchemy", tests_require = ['nose >= 0.11'], test_suite = "nose.collector", - entry_points = { - 'nose.plugins.0.10': [ - 'sqlalchemy = sqlalchemy_nose.noseplugin:NoseSQLAlchemy', - ] - }, long_description = """\ SQLAlchemy is: |