summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-12-09 23:11:17 +0000
committerChris McDonough <chrism@agendaless.com>2009-12-09 23:11:17 +0000
commitbad02d68e90e887f86bbeb866a45bfdcd5a3b984 (patch)
tree8a6cb85d5873ee38114e89cf88a1145c0fdcd084 /setup.py
parente654cb15caa0b020417ec93c7922d884e2c07100 (diff)
downloadpyramid-bad02d68e90e887f86bbeb866a45bfdcd5a3b984.tar.gz
pyramid-bad02d68e90e887f86bbeb866a45bfdcd5a3b984.tar.bz2
pyramid-bad02d68e90e887f86bbeb866a45bfdcd5a3b984.zip
- 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).
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
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]