mdrs-client-python/mdrsclient/__version__.py

9 lines
210 B
Python
Raw Normal View History

2023-05-01 20:00:32 +09:00
import os
here = os.path.abspath(os.path.dirname(__file__))
__all__ = ["__version__"]
with open(os.path.join(os.path.dirname(here), "VERSION")) as version_file:
__version__ = version_file.read().strip()