Files
rfd/rfd/__version__.py
Dave Gallant 727babbe7d deploy only if tags (#43)
* add VERSION symlink

* deploy only on tags true
2019-10-17 22:50:52 -04:00

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()