2020-04-18 11:45:44 +00:00
|
|
|
# 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
|
2020-01-13 06:34:05 +00:00
|
|
|
# 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__
|
2015-11-03 22:27:53 +00:00
|
|
|
|
2019-06-19 05:12:43 +00:00
|
|
|
App = AppName + u' ' + __version__
|
2015-11-03 22:27:53 +00:00
|
|
|
|
2015-04-22 20:22:03 +00:00
|
|
|
Maintainer = u'Tobias Gruetzmacher'
|
|
|
|
MaintainerEmail = u'tobias-dosage@23.gs'
|
2019-11-03 19:44:07 +00:00
|
|
|
Url = u'https://dosage.rocks/'
|
2015-04-22 20:22:03 +00:00
|
|
|
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__,
|
2016-03-03 00:05:36 +00:00
|
|
|
Url)
|
2016-10-28 22:21:41 +00:00
|
|
|
Copyright = u"""Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
2015-04-22 20:22:03 +00:00
|
|
|
Copyright (C) 2012-2014 Bastian Kleineidam
|
2020-01-04 12:41:37 +00:00
|
|
|
Copyright (C) 2015-2020 Tobias Gruetzmacher
|
2020-01-13 06:34:05 +00:00
|
|
|
Copyright (C) 2019-2020 Daniel Ring
|
2015-04-22 20:22:03 +00:00
|
|
|
"""
|
|
|
|
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."""
|
2019-11-03 19:44:07 +00:00
|
|
|
VoteUrl = "https://buildbox.23.gs/count/"
|