summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-04-18 14:47:51 -0400
committerChris McDonough <chrism@plope.com>2012-04-18 14:47:51 -0400
commitaca78fe3f08ad31be2cc154301c95a318d74ead8 (patch)
treefa22901704b1b2936255aff6b803f77e7b6c409f
parent7ea5740e7e1de812fd95ec3156a5b3137c26a4eb (diff)
downloadpyramid-aca78fe3f08ad31be2cc154301c95a318d74ead8.tar.gz
pyramid-aca78fe3f08ad31be2cc154301c95a318d74ead8.tar.bz2
pyramid-aca78fe3f08ad31be2cc154301c95a318d74ead8.zip
break docs stuff out of testing to hopefully appease shiningpanda
-rw-r--r--setup.cfg2
-rw-r--r--setup.py14
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",