annotate libervia/__init__.py @ 1488:42f110cab605

common (constants): version update
author Goffi <goffi@goffi.org>
date Fri, 03 Dec 2021 17:45:57 +0100
parents ac2374c92294
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1124
28e3eb3bb217 files reorganisation and installation rework:
Goffi <goffi@goffi.org>
parents: 861
diff changeset
1 import os.path
28e3eb3bb217 files reorganisation and installation rework:
Goffi <goffi@goffi.org>
parents: 861
diff changeset
2
28e3eb3bb217 files reorganisation and installation rework:
Goffi <goffi@goffi.org>
parents: 861
diff changeset
3 version_file = os.path.join(os.path.dirname(__file__), "VERSION")
1439
ac2374c92294 remove old pyjamas workaround
Goffi <goffi@goffi.org>
parents: 1183
diff changeset
4 with open(version_file) as f:
ac2374c92294 remove old pyjamas workaround
Goffi <goffi@goffi.org>
parents: 1183
diff changeset
5 __version__ = f.read().strip()