summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-07-22 09:54:49 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-07-22 09:54:49 -0400
commite72453004dbbf76ed73140aa6b32c2ea52e628e0 (patch)
tree1112c173cad2c9822b040d4063e20d1714854745 /setup.py
parentb2c35ef57383cf32ef16adbfc0c3df8dd0566058 (diff)
downloadcherrypy-git-e72453004dbbf76ed73140aa6b32c2ea52e628e0.tar.gz
Remove extras require
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/setup.py b/setup.py
index 19d332c8..2cc918d0 100644
--- a/setup.py
+++ b/setup.py
@@ -133,11 +133,6 @@ tests_require = [
'tox',
]
-extras_require = {
- # run `pip install cherrypy[test]` to install test packages as well
- 'test': tests_require,
-}
-
cmd_class = {
'build_py': cherrypy_build_py,
'test': Tox, # Enables `python setup.py test` invocation run tox tests
@@ -176,10 +171,6 @@ setup_params = dict(
install_requires=install_requires,
# Enables `python setup.py test` invocation install test dependencies first
tests_require=tests_require,
- # Enables installation of additional dependencies
- # run `pip install cherrypy[dependency_name]` to install extra packages
- # N.B. dependency_name may be comma-separated list of several of them
- extras_require=extras_require
)