diff -r f99d60d6b59b -r 2602857055c5 eric6/UI/Info.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/UI/Info.py Sun Apr 14 15:09:21 2019 +0200 @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2002 - 2019 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module defining some informational strings. +""" + +from __future__ import unicode_literals + +Program = 'eric6' +Version = '@@VERSION@@ (rev. @@REVISION@@)' +VersionOnly = '@@VERSION@@' +Copyright = 'Copyright (c) 2002 - 2019 Detlev Offenbach' \ + ' <detlev@die-offenbachs.de>' +CopyrightShort = '(c) 2002 - 2019 Detlev Offenbach' +BugAddress = 'eric-bugs@eric-ide.python-projects.org' +FeatureAddress = 'eric-featurerequest@eric-ide.python-projects.org' +Homepage = "https://eric-ide.python-projects.org/index.html"