17 lines
372 B
Python
17 lines
372 B
Python
__version__ = '1.0.1'
|
|
__title__ = "Pisya_bot"
|
|
__author__ = "beaconborn"
|
|
|
|
from typing import NamedTuple, Literal
|
|
|
|
|
|
class VersionInfo(NamedTuple):
|
|
major: int
|
|
minor: int
|
|
micro: int
|
|
releaselevel: Literal["alpha", "beta", "candidate", "final"]
|
|
serial: int
|
|
|
|
|
|
version_info: VersionInfo = VersionInfo(major=1, minor=0, micro=1, releaselevel="alpha", serial=0)
|