|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2002 - 2022 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Module defining some informational strings. |
|
8 """ |
|
9 |
|
10 |
|
11 Program = 'eric7' |
|
12 Version = '@@VERSION@@ (rev. @@REVISION@@)' |
|
13 VersionOnly = '@@VERSION@@' |
|
14 Copyright = ( |
|
15 'Copyright (c) 2002 - 2022 Detlev Offenbach' |
|
16 ' <detlev@die-offenbachs.de>' |
|
17 ) |
|
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" |