Coverage for aiocoap/meta.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.6.3, created at 2024-10-15 22:10 +0000

1# SPDX-FileCopyrightText: Christian Amsüss and the aiocoap contributors 

2# 

3# SPDX-License-Identifier: MIT 

4 

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.11.post0" 

11 

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 

17 

18#: URI used in error messages that ask the user to file a bug report 

19bugreport_uri = "https://github.com/chrysn/aiocoap/issues"