Add more meta-info to qutebrowser/__init__.py
This commit is contained in:
parent
7fa65a0f1e
commit
371c2b998a
@ -19,6 +19,11 @@
|
|||||||
|
|
||||||
import os.path
|
import os.path
|
||||||
|
|
||||||
|
__author__ = "Florian Bruhin"
|
||||||
|
__copyright__ = "Copyright 2014 Florian Bruhin (The Compiler)"
|
||||||
|
__license__ = "GPL"
|
||||||
|
__maintainer__ = __author__
|
||||||
|
__email__ = "mail@qutebrowser.org"
|
||||||
__version_info__ = (0, 0, 0)
|
__version_info__ = (0, 0, 0)
|
||||||
__version__ = '.'.join(map(str, __version_info__))
|
__version__ = '.'.join(map(str, __version_info__))
|
||||||
|
|
||||||
|
@ -74,9 +74,9 @@ setupdata = {
|
|||||||
"QtWebKit."),
|
"QtWebKit."),
|
||||||
'long_description': read_file('README'),
|
'long_description': read_file('README'),
|
||||||
'url': 'http://www.qutebrowser.org/',
|
'url': 'http://www.qutebrowser.org/',
|
||||||
'author': "Florian Bruhin",
|
'author': qutebrowser.__author__,
|
||||||
'author_email': 'me@qutebrowser.org',
|
'author_email': qutebrowser.__email__,
|
||||||
'license': 'GPL',
|
'license': qutebrowser.__license__,
|
||||||
'classifiers': [
|
'classifiers': [
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 3 - Alpha',
|
||||||
'Environment :: X11 Applications :: Qt',
|
'Environment :: X11 Applications :: Qt',
|
||||||
|
Loading…
Reference in New Issue
Block a user