mdrs-client-python/mdrsclient/__version__.py

9 lines
211 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
__all__ = ["__version__"]
with open(os.path.join(os.path.dirname(here), "VERSION")) as version_file:
__version__ = version_file.read().strip()