2014-01-05 15:50:57 +00:00
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
2015-04-22 20:22:03 +00:00
|
|
|
# Copyright (C) 2015 Tobias Gruetzmacher
|
2012-09-26 14:47:39 +00:00
|
|
|
"""
|
|
|
|
Define basic configuration data like version or application name.
|
|
|
|
"""
|
2012-06-20 19:58:13 +00:00
|
|
|
|
2015-04-22 20:22:03 +00:00
|
|
|
AppName = u'dosage'
|
|
|
|
Version = u'2.16' # Should be PEP 440 compatible
|
|
|
|
App = AppName + u' ' + Version
|
|
|
|
Maintainer = u'Tobias Gruetzmacher'
|
|
|
|
MaintainerEmail = u'tobias-dosage@23.gs'
|
|
|
|
Url = u'http://dosage.rocks/'
|
|
|
|
SupportUrl = u'https://github.com/webcomics/dosage/issues'
|
2012-09-26 14:52:45 +00:00
|
|
|
UserAgent = u"Mozilla/5.0 (compatible; %s/%s; +%s)" % (AppName, Version, Url)
|
2015-04-22 20:22:03 +00:00
|
|
|
Copyright = u"""Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
|
|
|
Copyright (C) 2012-2014 Bastian Kleineidam
|
|
|
|
Copyright (C) 2015 Tobias Gruetzmacher
|
|
|
|
"""
|
|
|
|
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."""
|
2013-04-09 17:33:50 +00:00
|
|
|
VoteUrl = "http://gaecounter.appspot.com/"
|