-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapserverversion.py
More file actions
29 lines (27 loc) · 1.26 KB
/
Copy pathmapserverversion.py
File metadata and controls
29 lines (27 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/python3
#
# Copyright 2009 Dan Smith <dsmith@danplanet.com>
# minor mods 2014 by Maurizio Andreotti <iz2lxi@yahoo.it>
#
## this module contains the d-rats version variables
# latest version being 0.3.3 updated to 0.3.4 (which is the alpha for this documentation project)
VERSION = "0.0.2 alpha"
NAME = "D-Rats Webmap server"
DESCRIPTION = "D-Rats Webmap server"
LONG_DESCRIPTION = "an expansion for D-RATS to show GPS positions on a web page"
AUTHORS = "Maurizio Andreotti IZ2LXI"
AUTHORS_EMAIL = "Maurizio Andreotti <iz2lxi@yahoo.it>"
COPYRIGHT = "Copyright 2014 -2024 Maurizio Andreotti (IZ2LXI)"
LICENCE = "You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>."
WEBSITE = "http://iz2lxi.jimdo.it"
if __name__ == "__main__":
print("VERSION: ", VERSION)
print("NAME: ", NAME)
print("DESCRIPTION: ", DESCRIPTION)
print("LONG_DESCRIPTION:", LONG_DESCRIPTION)
print("AUTHORS: ", AUTHORS)
print("AUTHORS_EMAIL: ", AUTHORS_EMAIL)
print("COPYRIGHT: ", COPYRIGHT)
print("LICENCE: ", LICENCE)
print("WEBSITE: ", WEBSITE)
# TRANSLATIONS variable is not defined in your code. If it's needed, please define it.