mirror of
https://github.com/davegallant/rfd.git
synced 2025-08-06 08:43:41 +00:00
13 lines
256 B
Python
13 lines
256 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from os.path import dirname, abspath, join
|
|
|
|
|
|
def load_version():
|
|
with open(join(dirname(abspath(__file__)), "VERSION")) as handle:
|
|
return handle.read()
|
|
|
|
|
|
version = load_version()
|