dosage/dosagelib/configuration.py
2012-09-26 16:47:39 +02:00

23 lines
752 B
Python

"""
Define basic configuration data like version or application name.
"""
import _Dosage_configdata as configdata
Version = configdata.version
ReleaseDate = configdata.release_date
AppName = configdata.name
App = AppName+u" "+Version
Author = configdata.author
HtmlAuthor = Author.replace(u' ', u' ')
Copyright = u"Copyright (C) 2004-2008 "+Author
HtmlCopyright = u"Copyright © 2004-2008 "+HtmlAuthor
Url = configdata.url
SupportUrl = Url + u"/issues"
Email = configdata.author_email
UserAgent = u"%s/%s (+%s)" % (AppName, Version, Url)
Freeware = AppName+u""" comes with ABSOLUTELY NO WARRANTY!
This is free software, and you are welcome to redistribute it
under certain conditions. Look at the file `LICENSE' within this
distribution."""