python-plexapi/plexapi/const.py

10 lines
239 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""Constants used by plexapi."""
# Library version
MAJOR_VERSION = 4
2022-08-28 06:09:16 +00:00
MINOR_VERSION = 13
2023-03-10 02:31:55 +00:00
PATCH_VERSION = 4
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
__version__ = f"{__short_version__}.{PATCH_VERSION}"