File: configuration.py

package info (click to toggle)
patool 4.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,400 kB
  • sloc: python: 5,534; makefile: 177; sh: 122; vhdl: 1
file content (16 lines) | stat: -rw-r--r-- 561 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (C) 2013-2023 Bastian Kleineidam
"""Define basic configuration data like version or application name."""

AppName: str = "patool"
Version: str = "4.0.4"
MyName: str = "Bastian Kleineidam"
MyEmail: str = "bastian.kleineidam@web.de"

App: str = AppName + " " + Version
Author: str = MyName
AuthorEmail: str = MyEmail
Copyright: str = "Copyright (C) 2004-2023 " + Author
Url: str = "https://github.com/wummel/patool"
SupportUrl: str = "https://github.com/wummel/patool/issues/"
License: str = "GPL-3"
Description: str = "portable archive file manager"