mirror of
https://github.com/balkian/pre-commit-hooks.git
synced 2024-11-14 20:22:29 +00:00
5 lines
114 B
Python
5 lines
114 B
Python
|
import os
|
||
|
|
||
|
with open(os.path.join(os.path.dirname(__file__), 'VERSION')) as f:
|
||
|
__version__ = f.read().strip()
|