burst-link-protocol 1.0.4__tar.gz → 1.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/CMakeLists.txt +4 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/PKG-INFO +1 -1
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/pyproject.toml +1 -1
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/python_bindings.cpp +1 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.github/dependabot.yml +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.github/workflows/pip.yml +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.github/workflows/wheel.yml +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.gitignore +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.vscode/c_cpp_properties.json +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.vscode/launch.json +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.vscode/settings.json +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.vscode/tasks.json +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/LICENSE +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/README.md +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/ROADMAP.md +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/docs/design.drawio +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/docs/design.svg +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/platform/zephyr/CMakeLists.txt +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/burst_interface.h +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/burst_link_protocol/__init__.py +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/burst_link_protocol/main.py +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/crc.c +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/crc.h +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/decoder.c +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/encoder.c +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/test/test_burst.py +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/test/test_c.py +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/test/test_c_validation.py +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/test/test_python_validation.py +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/test/test_speed.py +0 -0
- {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/uv.lock +0 -0
@@ -51,9 +51,13 @@ find_package(nanobind CONFIG REQUIRED)
|
|
51
51
|
|
52
52
|
# We are now ready to compile the actual extension module
|
53
53
|
nanobind_add_module(
|
54
|
+
|
54
55
|
# Name of the extension
|
55
56
|
burst_interface_c
|
56
57
|
|
58
|
+
# domain name
|
59
|
+
NB_DOMAIN burst_interface_domain
|
60
|
+
|
57
61
|
# Target the stable ABI for Python 3.12+, which reduces
|
58
62
|
# the number of binary wheels that must be built. This
|
59
63
|
# does nothing on older Python versions
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: burst-link-protocol
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.5
|
4
4
|
Summary: Binary Utility for Reliable Stream Transfer (BURST) is a library for encoding and decoding binary data streams into and from a byte stream.
|
5
5
|
Author-Email: Floris vernieuwe <floris@vernieuwe.eu>
|
6
6
|
License-File: LICENSE
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "burst-link-protocol"
|
3
|
-
version = "1.0.
|
3
|
+
version = "1.0.5" # Choose one version reference here
|
4
4
|
description = "Binary Utility for Reliable Stream Transfer (BURST) is a library for encoding and decoding binary data streams into and from a byte stream."
|
5
5
|
requires-python = ">=3.10,<4.0"
|
6
6
|
authors = [
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|