pycborstream 0.0.2__tar.gz → 0.0.3__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.
- {pycborstream-0.0.2 → pycborstream-0.0.3}/PKG-INFO +2 -1
- {pycborstream-0.0.2 → pycborstream-0.0.3}/pycborstream.egg-info/PKG-INFO +2 -1
- {pycborstream-0.0.2 → pycborstream-0.0.3}/pycborstream.egg-info/SOURCES.txt +1 -0
- pycborstream-0.0.3/pycborstream.egg-info/requires.txt +1 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/pyproject.toml +4 -2
- {pycborstream-0.0.2 → pycborstream-0.0.3}/setup.py +1 -1
- {pycborstream-0.0.2 → pycborstream-0.0.3}/LICENSE +0 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/README.md +0 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/pycborstream/__init__.py +0 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/pycborstream/cborstreamdec.py +0 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/pycborstream/cborstreamenc.py +0 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/pycborstream.egg-info/dependency_links.txt +0 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/pycborstream.egg-info/top_level.txt +0 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/setup.cfg +0 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/tests/__init__.py +0 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/tests/generate_cbor.py +0 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/tests/test_cborstreamdec.py +0 -0
- {pycborstream-0.0.2 → pycborstream-0.0.3}/tests/test_cborstreamenc.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pycborstream
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: Stream API using cbor2 to read and write CBOR data.
|
|
5
5
|
Author: Olivier Langella
|
|
6
6
|
Author-email: Olivier Langella <olivier.langella@cnrs.fr>
|
|
@@ -11,6 +11,7 @@ Keywords: stream,CBOR
|
|
|
11
11
|
Requires-Python: >=3.11
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
+
Requires-Dist: cbor2<6.0.0,>=5.9.0
|
|
14
15
|
Dynamic: author
|
|
15
16
|
Dynamic: license-file
|
|
16
17
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pycborstream
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: Stream API using cbor2 to read and write CBOR data.
|
|
5
5
|
Author: Olivier Langella
|
|
6
6
|
Author-email: Olivier Langella <olivier.langella@cnrs.fr>
|
|
@@ -11,6 +11,7 @@ Keywords: stream,CBOR
|
|
|
11
11
|
Requires-Python: >=3.11
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
+
Requires-Dist: cbor2<6.0.0,>=5.9.0
|
|
14
15
|
Dynamic: author
|
|
15
16
|
Dynamic: license-file
|
|
16
17
|
|
|
@@ -8,6 +8,7 @@ pycborstream/cborstreamenc.py
|
|
|
8
8
|
pycborstream.egg-info/PKG-INFO
|
|
9
9
|
pycborstream.egg-info/SOURCES.txt
|
|
10
10
|
pycborstream.egg-info/dependency_links.txt
|
|
11
|
+
pycborstream.egg-info/requires.txt
|
|
11
12
|
pycborstream.egg-info/top_level.txt
|
|
12
13
|
tests/__init__.py
|
|
13
14
|
tests/generate_cbor.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cbor2<6.0.0,>=5.9.0
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
authors = [{name = "Olivier Langella", email = "olivier.langella@cnrs.fr"}]
|
|
3
3
|
description = "Stream API using cbor2 to read and write CBOR data."
|
|
4
|
-
dependencies = []
|
|
5
4
|
name = "pycborstream"
|
|
6
5
|
requires-python = ">= 3.11"
|
|
7
|
-
version = "0.0.
|
|
6
|
+
version = "0.0.3"
|
|
8
7
|
readme = "README.md"
|
|
9
8
|
license = "GPL-3.0-or-later"
|
|
9
|
+
dependencies = [
|
|
10
|
+
"cbor2>=5.9.0,<6.0.0",
|
|
11
|
+
]
|
|
10
12
|
|
|
11
13
|
keywords = [
|
|
12
14
|
"stream",
|
|
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
|