19 lines
678 B
Python
19 lines
678 B
Python
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."""
|
|
|