dosage/dosagelib/configuration.py

28 lines
1 KiB
Python
Raw Normal View History

# SPDX-License-Identifier: MIT
2014-01-05 15:50:57 +00:00
# Copyright (C) 2012-2014 Bastian Kleineidam
2020-01-04 12:41:37 +00:00
# Copyright (C) 2015-2020 Tobias Gruetzmacher
# Copyright (C) 2019-2020 Daniel Ring
2012-09-26 14:47:39 +00:00
"""
Define basic configuration data like version or application name.
"""
2019-06-19 05:12:43 +00:00
from . import AppName, __version__
2019-06-19 05:12:43 +00:00
App = AppName + u' ' + __version__
Maintainer = u'Tobias Gruetzmacher'
MaintainerEmail = u'tobias-dosage@23.gs'
Url = u'https://dosage.rocks/'
SupportUrl = u'https://github.com/webcomics/dosage/issues'
2019-06-19 05:12:43 +00:00
UserAgent = u"Mozilla/5.0 (compatible; %s/%s; +%s)" % (AppName, __version__,
Url)
2016-10-28 22:21:41 +00:00
Copyright = u"""Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
Copyright (C) 2012-2014 Bastian Kleineidam
2020-01-04 12:41:37 +00:00
Copyright (C) 2015-2020 Tobias Gruetzmacher
Copyright (C) 2019-2020 Daniel Ring
"""
Freeware = AppName + u""" comes with ABSOLUTELY NO WARRANTY!
2012-06-20 19:58:13 +00:00
This is free software, and you are welcome to redistribute it
2013-03-07 17:19:50 +00:00
under certain conditions. Look at the file `COPYING' within this
2012-06-20 19:58:13 +00:00
distribution."""
VoteUrl = "https://buildbox.23.gs/count/"