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