From 756aa2724e495b8a969bca73d133b27615a343e7 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 15 Nov 2010 19:25:34 -0500 Subject: first step of [ticket:1949], remove the setuptools aspect of the plugin, move it to test/bootstrap --- setup.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 7a8a0f3f2..0e9b18c66 100644 --- a/setup.py +++ b/setup.py @@ -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: -- cgit v1.2.1