1"""Pure python package for DICOM medical file reading and writing."""
2import re
3from typing import cast, Match
4
5
6__version__: str = '2.2.2'
7
8result = cast(Match[str], re.match(r'(\d+\.\d+\.\d+).*', __version__))
9__version_info__ = tuple(result.group(1).split('.'))
10
11
12# DICOM Standard version used for:
13#   _dicom_dict, _uid_dict and _storage_sopclass_uids
14__dicom_version__: str = '2021d'
15