annotate libervia/__init__.py @ 1482:e35151a2cec1

browser (events): delete implementation
author Goffi <goffi@goffi.org>
date Thu, 11 Nov 2021 18:10:43 +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()