Clean up extras_require keys.

This commit is contained in:
Shiz 2014-03-15 08:11:52 +01:00
parent 8b4b506387
commit d9bf536deb
1 changed files with 4 additions and 4 deletions

View File

@ -14,10 +14,10 @@ setup(
], ],
requires=['tornado'], requires=['tornado'],
extras_require={ extras_require={
'SASL': 'pure-sasl >=0.1.6', # for pydle.features.sasl 'sasl': 'pure-sasl >=0.1.6', # for pydle.features.sasl
'Generating documentation': 'sphinx_rtd_theme', # the Sphinx theme we use 'docs': 'sphinx_rtd_theme', # the Sphinx theme we use
'Running tests': 'pytest', # collect and run tests 'tests': 'pytest', # collect and run tests
'Getting test case coverage': 'pytest-cov' # get test case coverage 'coverage': 'pytest-cov' # get test case coverage
}, },
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [