| 12345678910111213141516171819202122232425262728 | # flake8: noqaimport loggingimport sysfrom qtpy import QT_VERSION__appname__ = "labelme"# Semantic Versioning 2.0.0: https://semver.org/# 1. MAJOR version when you make incompatible API changes;# 2. MINOR version when you add functionality in a backwards-compatible manner;# 3. PATCH version when you make backwards-compatible bug fixes.# e.g., 1.0.0a0, 1.0.0a1, 1.0.0b0, 1.0.0rc0, 1.0.0, 1.0.0.post0__version__ = "5.2.0.post2"QT4 = QT_VERSION[0] == "4"QT5 = QT_VERSION[0] == "5"del QT_VERSIONPY2 = sys.version[0] == "2"PY3 = sys.version[0] == "3"del sysfrom labelme.label_file import LabelFilefrom labelme import testingfrom labelme import utils
 |