2013-04-08 18:12:50 +00:00
|
|
|
# Copyright (C) 2013 Bastian Kleineidam
|
|
|
|
"""
|
|
|
|
Define basic configuration data like version or application name.
|
|
|
|
"""
|
|
|
|
import _Patool_configdata as configdata
|
|
|
|
|
|
|
|
Version = configdata.version
|
|
|
|
ReleaseDate = configdata.release_date
|
|
|
|
AppName = configdata.name
|
2013-04-08 18:20:26 +00:00
|
|
|
App = AppName+" "+Version
|
2013-04-08 18:12:50 +00:00
|
|
|
Author = configdata.author
|
|
|
|
Maintainer = configdata.maintainer
|
2013-04-08 18:20:26 +00:00
|
|
|
Copyright = "Copyright (C) 2004-2008 " + Author
|
2013-04-08 18:12:50 +00:00
|
|
|
Url = configdata.url
|
2013-04-08 18:20:26 +00:00
|
|
|
SupportUrl = Url + "issues"
|
2013-04-08 18:12:50 +00:00
|
|
|
Email = configdata.author_email
|