diff options
| author | Chris McDonough <chrism@plope.com> | 2012-04-18 14:47:51 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-04-18 14:47:51 -0400 |
| commit | aca78fe3f08ad31be2cc154301c95a318d74ead8 (patch) | |
| tree | fa22901704b1b2936255aff6b803f77e7b6c409f | |
| parent | 7ea5740e7e1de812fd95ec3156a5b3137c26a4eb (diff) | |
| download | pyramid-aca78fe3f08ad31be2cc154301c95a318d74ead8.tar.gz pyramid-aca78fe3f08ad31be2cc154301c95a318d74ead8.tar.bz2 pyramid-aca78fe3f08ad31be2cc154301c95a318d74ead8.zip | |
break docs stuff out of testing to hopefully appease shiningpanda
| -rw-r--r-- | setup.cfg | 2 | ||||
| -rw-r--r-- | setup.py | 14 |
2 files changed, 10 insertions, 6 deletions
@@ -10,4 +10,4 @@ cover-erase=1 [aliases] dev = develop easy_install pyramid[testing] - +docs = develop easy_install pyramid[docs] @@ -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", |
