From e6fa66bd2c18632ef0608c63fb024b01931a5272 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 18 Apr 2010 21:54:20 +0000 Subject: - Use "Venusian" (`http://docs.repoze.org/venusian `) to perform ``bfg_view`` decorator scanning rather than relying on a BFG-internal decorator scanner. (Truth be told, Venusian is really just a generalization of the BFG-internal decorator scanner). - A new install-time dependency on the ``venusian`` distribution was added. - Remove ``repoze.bfg.compat.pkgutil_26.py`` and import alias ``repoze.bfg.compat.walk_packages``. These were only required by internal scanning machinery; Venusian replaced the internal scanning machinery, so these are no longer required. --- setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 3d03b96b3..3dbed2c2a 100644 --- a/setup.py +++ b/setup.py @@ -38,6 +38,7 @@ install_requires=[ 'zope.configuration', 'zope.deprecation', 'zope.interface >= 3.5.1', # 3.5.0 comment: "allow to bootstrap on jython" + 'venusian >= 0.2', ] if sys.version_info[:2] < (2, 6): -- cgit v1.2.3