mirror of https://github.com/Shizmob/pydle.git
Clean up extras_require keys.
This commit is contained in:
parent
8b4b506387
commit
d9bf536deb
8
setup.py
8
setup.py
|
@ -14,10 +14,10 @@ setup(
|
|||
],
|
||||
requires=['tornado'],
|
||||
extras_require={
|
||||
'SASL': 'pure-sasl >=0.1.6', # for pydle.features.sasl
|
||||
'Generating documentation': 'sphinx_rtd_theme', # the Sphinx theme we use
|
||||
'Running tests': 'pytest', # collect and run tests
|
||||
'Getting test case coverage': 'pytest-cov' # get test case coverage
|
||||
'sasl': 'pure-sasl >=0.1.6', # for pydle.features.sasl
|
||||
'docs': 'sphinx_rtd_theme', # the Sphinx theme we use
|
||||
'tests': 'pytest', # collect and run tests
|
||||
'coverage': 'pytest-cov' # get test case coverage
|
||||
},
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
|
|
Loading…
Reference in New Issue