copyparty/copyparty/__version__.py
2024-09-16 01:07:50 +00:00

14 lines
257 B
Python

# coding: utf-8
VERSION = (1, 15, 3)
CODENAME = "fill the drives"
BUILD_DT = (2024, 9, 16)
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