17 lines
387 B
Python
17 lines
387 B
Python
__version__ = '0.0.8'
|
|
__title__ = "Pisya_bot"
|
|
__author__ = "baconborn"
|
|
|
|
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=0, minor=0, micro=8, releaselevel="alpha", serial=0)
|