blob: bb651c9c377845805ad4a50cb6faf8261581c5e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
"""Main module for PortableMC API.
Please read the API documentation for more general information about the architecture of
the API and examples codes. You should also read the API documentation about
*Versioning and stability* to understand which classes you should consider part of the
public API, and therefore stable across minor and patch version bumps.
"""
LAUNCHER_NAME = "portablemc"
LAUNCHER_VERSION = "4.0.3"
LAUNCHER_AUTHORS = ["Théo Rozier <contact@theorozier.fr>", "Github contributors"]
LAUNCHER_COPYRIGHT = "PortableMC Copyright (C) 2021-2023 Théo Rozier"
LAUNCHER_URL = "https://github.com/mindstorm38/portablemc"
|