Files
copyparty/copyparty/__version__.py
2020-01-19 16:12:59 +01:00

13 lines
227 B
Python

# coding: utf-8
VERSION = (0, 2, 3)
BUILD_DT = (2020, 1, 19)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
__version__ = S_VERSION
__build_dt__ = S_BUILD_DT
# I'm all ears