python-plexapi/plexapi/const.py

10 lines
240 B
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
"""Constants used by plexapi."""
# Library version
MAJOR_VERSION = 4
2023-07-28 03:14:37 +00:00
MINOR_VERSION = 15
2024-08-18 20:14:18 +00:00
PATCH_VERSION = 16
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
__version__ = f"{__short_version__}.{PATCH_VERSION}"