From bad02d68e90e887f86bbeb866a45bfdcd5a3b984 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 9 Dec 2009 23:11:17 +0000 Subject: - A new dependency on the ``twill`` package was added to the ``setup.py`` ``tests_require`` argument (Twill will only be downloaded when :mod:`repoze.bfg` ``setup.py test`` or ``setup.py nosetests`` is invoked). --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 1cb62ae9e..6678775fd 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,8 @@ setup(name='repoze.bfg', namespace_packages = ['repoze', 'repoze.bfg'], zip_safe=False, install_requires = install_requires, - tests_require= install_requires + ['Sphinx', 'docutils', 'coverage'], + tests_require= install_requires + ['Sphinx', 'docutils', 'coverage', + 'twill'], test_suite="repoze.bfg.tests", entry_points = """\ [paste.paster_create_template] -- cgit v1.2.3