mdrs-client-python/mdrsclient/__version__.py

9 lines
194 B
Python
Raw Normal View History

2023-05-01 20:00:32 +09:00
import os
2023-05-10 18:17:35 +09:00
here = os.path.realpath(os.path.dirname(__file__))
2023-05-01 20:00:32 +09:00
2023-07-26 17:59:35 +09:00
with open(os.path.join(here, "VERSION")) as version_file:
2023-05-01 20:00:32 +09:00
__version__ = version_file.read().strip()
2023-07-26 17:59:35 +09:00
__all__ = ["__version__"]