1# file generated by setuptools-scm 
    2# don't change, don't track in version control 
    3 
    4__all__ = [ 
    5    "__version__", 
    6    "__version_tuple__", 
    7    "version", 
    8    "version_tuple", 
    9    "__commit_id__", 
    10    "commit_id", 
    11] 
    12 
    13TYPE_CHECKING = False 
    14if TYPE_CHECKING: 
    15    from typing import Tuple 
    16    from typing import Union 
    17 
    18    VERSION_TUPLE = Tuple[Union[int, str], ...] 
    19    COMMIT_ID = Union[str, None] 
    20else: 
    21    VERSION_TUPLE = object 
    22    COMMIT_ID = object 
    23 
    24version: str 
    25__version__: str 
    26__version_tuple__: VERSION_TUPLE 
    27version_tuple: VERSION_TUPLE 
    28commit_id: COMMIT_ID 
    29__commit_id__: COMMIT_ID 
    30 
    31__version__ = version = '1.0.3.dev11+g63aeb16b8' 
    32__version_tuple__ = version_tuple = (1, 0, 3, 'dev11', 'g63aeb16b8') 
    33 
    34__commit_id__ = commit_id = 'g63aeb16b8'