Edit on GitHub

sysmon_pytk.about

Metadata about the application (name, version, author, license, etc.).

 1# SPDX-FileCopyrightText: © 2024 Stacey Adams <stacey.belle.rose@gmail.com>
 2# SPDX-License-Identifier: MIT
 3
 4"""
 5Metadata about the application (name, version, author, license, etc.).
 6"""
 7
 8from .app_locale import get_translator
 9
10_ = get_translator()
11
12__app_name__ = "sysmon-pytk"
13__version__ = "0.5.1.post1"
14__license__ = _("MIT License")
15__author_name__ = "Stacey Adams"
16__author_email__ = "stacey.belle.rose@gmail.com"
17__url__ = "https://github.com/staceybellerose/sysmon-pytk"
18__summary__ = _("""\
19sysmon-pytk is a system monitor. It monitors CPU usage and temperature, \
20RAM usage, and disk usage of the primary disk (containing the root \
21partition). It also displays the system's hostname, IP address, uptime, \
22and current process count.""")
23__keywords__ = "Python / 3, X11 Applications, Linux, System / Monitoring, Beta"
24__copyright_year__ = "2024"
25__license_url__ = "https://opensource.org/licenses/MIT"
26__full_license__ = """\
27MIT License
28
29Copyright © 2024 Stacey Adams
30
31Permission is hereby granted, free of charge, to any person obtaining a copy
32of this software and associated documentation files (the "Software"), to deal
33in the Software without restriction, including without limitation the rights
34to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
35copies of the Software, and to permit persons to whom the Software is
36furnished to do so, subject to the following conditions:
37
38The above copyright notice and this permission notice shall be included in all
39copies or substantial portions of the Software.
40
41THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
42IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
43FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
44AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
45LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
46OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
47SOFTWARE.
48"""