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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pycborstream
3
- Version: 0.0.2
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.2
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.2"
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",
@@ -8,7 +8,7 @@ long_description = (this_directory / "README.md").read_text()
8
8
 
9
9
  setup(
10
10
  name="pycborstream",
11
- version="0.0.2",
11
+ version="0.0.3",
12
12
  packages=find_packages(),
13
13
  ## Metadata
14
14
  author="Olivier Langella",
File without changes
File without changes
File without changes