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'],
|
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': [
|
||||||
|
|
Loading…
Reference in New Issue