Coverage for aiocoap/meta.py: 100%
3 statements
« prev ^ index » next coverage.py v7.6.8, created at 2024-11-28 12:34 +0000
« prev ^ index » next coverage.py v7.6.8, created at 2024-11-28 12:34 +0000
1# SPDX-FileCopyrightText: Christian Amsüss and the aiocoap contributors
2#
3# SPDX-License-Identifier: MIT
5#: Make library version internally
6#:
7#: This is not supposed to be used in any decision-making process (use package
8#: dependencies for that) or workarounds, but used by command-line tools or the
9#: impl-info link to provide debugging information.
10version = "0.4.12.post0"
12#: URI used to describe the current version of the library
13#:
14#: This is used the same way as `version` but when a URI is required, for
15#: example as a default value for .well-known/core's rel=impl-info link.
16library_uri = "https://christian.amsuess.com/tools/aiocoap/#version-" + version
18#: URI used in error messages that ask the user to file a bug report
19bugreport_uri = "https://github.com/chrysn/aiocoap/issues"