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__"]
|