copyparty/copyparty/__version__.py
2023-11-04 21:58:01 +00:00

14 lines
254 B
Python

# coding: utf-8
VERSION = (1, 9, 16)
CODENAME = "prometheable"
BUILD_DT = (2023, 11, 4)
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