From aca78fe3f08ad31be2cc154301c95a318d74ead8 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 18 Apr 2012 14:47:51 -0400 Subject: break docs stuff out of testing to hopefully appease shiningpanda --- setup.cfg | 2 +- setup.py | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/setup.cfg b/setup.cfg index 8aac0afd1..d7622683f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,4 +10,4 @@ cover-erase=1 [aliases] dev = develop easy_install pyramid[testing] - +docs = develop easy_install pyramid[docs] diff --git a/setup.py b/setup.py index e325b8a29..29a0f22ca 100644 --- a/setup.py +++ b/setup.py @@ -49,19 +49,22 @@ install_requires=[ ] tests_require = [ + 'nose', + 'coverage', 'WebTest >= 1.3.1', # py3 compat 'virtualenv', ] if not PY3: tests_require.extend([ - 'Sphinx', - 'docutils', - 'repoze.sphinx.autointerface', 'zope.component>=3.11.0', ]) -testing_extras = tests_require + ['nose', 'coverage'] +docs_extras = [ + 'Sphinx', + 'docutils', + 'repoze.sphinx.autointerface', + ] setup(name='pyramid', version='1.4dev', @@ -92,7 +95,8 @@ setup(name='pyramid', zip_safe=False, install_requires = install_requires, extras_require = { - 'testing':testing_extras, + 'testing':tests_require, + 'docs':docs_extras, }, tests_require = tests_require, test_suite="pyramid.tests", -- cgit v1.2.3