6 """ |
6 """ |
7 Module defining some informational strings. |
7 Module defining some informational strings. |
8 """ |
8 """ |
9 |
9 |
10 |
10 |
11 Program = 'eric7' |
11 Program = "eric7" |
12 Version = '@@VERSION@@ (rev. @@REVISION@@)' |
12 Version = "@@VERSION@@ (rev. @@REVISION@@)" |
13 VersionOnly = '@@VERSION@@' |
13 VersionOnly = "@@VERSION@@" |
14 Copyright = ( |
14 Copyright = "Copyright (c) 2002 - 2022 Detlev Offenbach" " <detlev@die-offenbachs.de>" |
15 'Copyright (c) 2002 - 2022 Detlev Offenbach' |
15 CopyrightShort = "(c) 2002 - 2022 Detlev Offenbach" |
16 ' <detlev@die-offenbachs.de>' |
16 BugAddress = "eric-bugs@eric-ide.python-projects.org" |
17 ) |
17 FeatureAddress = "eric-featurerequest@eric-ide.python-projects.org" |
18 CopyrightShort = '(c) 2002 - 2022 Detlev Offenbach' |
|
19 BugAddress = 'eric-bugs@eric-ide.python-projects.org' |
|
20 FeatureAddress = 'eric-featurerequest@eric-ide.python-projects.org' |
|
21 Homepage = "https://eric-ide.python-projects.org/index.html" |
18 Homepage = "https://eric-ide.python-projects.org/index.html" |