Files
mdrs-client-python/mdrsclient/__version__.py
T
2023-07-26 17:59:35 +09:00

9 lines
194 B
Python

import os
here = os.path.realpath(os.path.dirname(__file__))
with open(os.path.join(here, "VERSION")) as version_file:
__version__ = version_file.read().strip()
__all__ = ["__version__"]