2015-07-19 15:29:33 +00:00
|
|
|
# Copyright (C) 2013-2015 Bastian Kleineidam
|
2013-04-08 18:12:50 +00:00
|
|
|
"""
|
|
|
|
Define basic configuration data like version or application name.
|
|
|
|
"""
|
2014-06-24 06:34:06 +00:00
|
|
|
import _patool_configdata as configdata
|
2013-04-08 18:12:50 +00:00
|
|
|
|
|
|
|
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
|
2015-07-19 15:29:33 +00:00
|
|
|
Copyright = "Copyright (C) 2004-2015 " + 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
|