Move extras_require to setup.py

This commit is contained in:
Florian Bruhin 2014-06-19 09:34:07 +02:00
parent 61c9afb821
commit 06779a875f
2 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,6 @@ setupdata = {
'author': _get_constant('author'),
'author_email': _get_constant('email'),
'license': _get_constant('license'),
'extras_require': {'nice-debugging': ['colorlog', 'colorama', 'ipdb']},
'classifiers': [
'Development Status :: 3 - Alpha',
'Environment :: X11 Applications :: Qt',

View File

@ -47,6 +47,7 @@ try:
['qutebrowser = qutebrowser.qutebrowser:main']},
test_suite='qutebrowser.test',
zip_safe=True,
extras_require={'nice-debugging': ['colorlog', 'colorama', 'ipdb']},
**setupdata
)
finally: