Update metainfo in setup.py

This commit is contained in:
Florian Bruhin 2017-09-21 22:57:29 +02:00
parent c74236dd96
commit 3f18a5ada7

View File

@ -70,7 +70,6 @@ try:
include_package_data=True, include_package_data=True,
entry_points={'gui_scripts': entry_points={'gui_scripts':
['qutebrowser = qutebrowser.qutebrowser:main']}, ['qutebrowser = qutebrowser.qutebrowser:main']},
test_suite='qutebrowser.test',
zip_safe=True, zip_safe=True,
install_requires=['pypeg2', 'jinja2', 'pygments', 'PyYAML', 'attrs'], install_requires=['pypeg2', 'jinja2', 'pygments', 'PyYAML', 'attrs'],
name='qutebrowser', name='qutebrowser',
@ -78,21 +77,20 @@ try:
description=_get_constant('description'), description=_get_constant('description'),
long_description=read_file('README.asciidoc'), long_description=read_file('README.asciidoc'),
url='https://www.qutebrowser.org/', url='https://www.qutebrowser.org/',
requires=['pypeg2', 'jinja2', 'pygments', 'PyYAML', 'attrs'],
author=_get_constant('author'), author=_get_constant('author'),
author_email=_get_constant('email'), author_email=_get_constant('email'),
license=_get_constant('license'), license=_get_constant('license'),
classifiers=[ classifiers=[
'Development Status :: 3 - Alpha', 'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: Qt', 'Environment :: X11 Applications :: Qt',
'Intended Audience :: End Users/Desktop', 'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later ' 'License :: OSI Approved :: GNU General Public License v3 or later '
'(GPLv3+)', '(GPLv3+)',
'Natural Language :: English', 'Natural Language :: English',
'Operating System :: Microsoft :: Windows', 'Operating System :: Microsoft :: Windows',
'Operating System :: Microsoft :: Windows :: Windows XP',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: POSIX :: Linux', 'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: POSIX :: BSD',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
@ -100,7 +98,7 @@ try:
'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Browsers', 'Topic :: Internet :: WWW/HTTP :: Browsers',
], ],
keywords='pyqt browser web qt webkit', keywords='pyqt browser web qt webkit qtwebkit qtwebengine',
) )
finally: finally:
if BASEDIR is not None: if BASEDIR is not None: