File size: 156 Bytes
9b2107c |
1 2 3 4 5 6 7 |
import os
with open(os.path.join(os.path.dirname(__file__), "VERSION"), "r", encoding="utf-8") as f:
version = f.read().strip()
__version__ = version
|
9b2107c |
1 2 3 4 5 6 7 |
import os
with open(os.path.join(os.path.dirname(__file__), "VERSION"), "r", encoding="utf-8") as f:
version = f.read().strip()
__version__ = version
|