diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-22 09:54:49 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-22 09:54:49 -0400 |
commit | e72453004dbbf76ed73140aa6b32c2ea52e628e0 (patch) | |
tree | 1112c173cad2c9822b040d4063e20d1714854745 /setup.py | |
parent | b2c35ef57383cf32ef16adbfc0c3df8dd0566058 (diff) | |
download | cherrypy-git-e72453004dbbf76ed73140aa6b32c2ea52e628e0.tar.gz |
Remove extras require
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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 ) |