Glymur 0.12.9.post1__tar.gz → 0.13.0__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.
Files changed (54) hide show
  1. {Glymur-0.12.9.post1 → glymur-0.13.0}/CHANGES.txt +8 -0
  2. {Glymur-0.12.9.post1 → glymur-0.13.0}/Glymur.egg-info/PKG-INFO +2 -2
  3. {Glymur-0.12.9.post1 → glymur-0.13.0}/Glymur.egg-info/SOURCES.txt +2 -0
  4. {Glymur-0.12.9.post1 → glymur-0.13.0}/PKG-INFO +2 -2
  5. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/__init__.py +2 -2
  6. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/data/nemo.jp2 +0 -0
  7. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/jp2box.py +3 -0
  8. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/jp2k.py +74 -979
  9. glymur-0.13.0/glymur/jp2kr.py +982 -0
  10. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/lib/openjp2.py +30 -0
  11. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/tiff.py +6 -1
  12. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/version.py +1 -1
  13. {Glymur-0.12.9.post1 → glymur-0.13.0}/pyproject.toml +1 -0
  14. {Glymur-0.12.9.post1 → glymur-0.13.0}/setup.cfg +2 -2
  15. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_geo.py +1 -1
  16. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_jp2box.py +21 -12
  17. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_jp2box_jpx.py +14 -15
  18. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_jp2box_uuid.py +1 -2
  19. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_jp2k.py +37 -58
  20. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_jp2k_writes.py +136 -65
  21. glymur-0.13.0/tests/test_jp2kr.py +1002 -0
  22. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_openjp2.py +6 -7
  23. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_printing.py +71 -78
  24. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_tiff2jp2.py +56 -12
  25. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_warnings.py +4 -5
  26. {Glymur-0.12.9.post1 → glymur-0.13.0}/Glymur.egg-info/dependency_links.txt +0 -0
  27. {Glymur-0.12.9.post1 → glymur-0.13.0}/Glymur.egg-info/entry_points.txt +0 -0
  28. {Glymur-0.12.9.post1 → glymur-0.13.0}/Glymur.egg-info/not-zip-safe +0 -0
  29. {Glymur-0.12.9.post1 → glymur-0.13.0}/Glymur.egg-info/requires.txt +0 -0
  30. {Glymur-0.12.9.post1 → glymur-0.13.0}/Glymur.egg-info/top_level.txt +0 -0
  31. {Glymur-0.12.9.post1 → glymur-0.13.0}/LICENSE.txt +0 -0
  32. {Glymur-0.12.9.post1 → glymur-0.13.0}/MANIFEST.in +0 -0
  33. {Glymur-0.12.9.post1 → glymur-0.13.0}/README.md +0 -0
  34. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/_iccprofile.py +0 -0
  35. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/codestream.py +0 -0
  36. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/command_line.py +0 -0
  37. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/config.py +0 -0
  38. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/core.py +0 -0
  39. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/data/__init__.py +0 -0
  40. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/data/goodstuff.j2k +0 -0
  41. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/data/heliov.jpx +0 -0
  42. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/lib/__init__.py +0 -0
  43. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/lib/tiff.py +0 -0
  44. {Glymur-0.12.9.post1 → glymur-0.13.0}/glymur/options.py +0 -0
  45. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_callbacks.py +0 -0
  46. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_cinema.py +0 -0
  47. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_codestream.py +0 -0
  48. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_colour_specification_box.py +0 -0
  49. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_config.py +0 -0
  50. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_jp2box_xml.py +0 -0
  51. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_libtiff.py +0 -0
  52. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_set_decoded_components.py +0 -0
  53. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_slicing.py +0 -0
  54. {Glymur-0.12.9.post1 → glymur-0.13.0}/tests/test_threading.py +0 -0
@@ -1,3 +1,11 @@
1
+ Apr 19, 2024 - v0.13.0
2
+ Refactor Jp2k class into Jp2k, Jp2kr
3
+ Simplify example file nemo.jp2
4
+ Fix doctests
5
+
6
+ Mar 16, 2024 - v0.12.9post2
7
+ Fix readthedocs builds
8
+
1
9
  Nov 26, 2023 - v0.12.9post1
2
10
  Fix setup.cfg for v0.12.9 release
3
11
 
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: Glymur
3
- Version: 0.12.9.post1
3
+ Version: 0.13.0
4
4
  Home-page: https://github.com/quintusdias/glymur
5
5
  Author: 'John Evans'
6
- Author-email: "John Evans" <john.g.evans.ne@gmail.com>
6
+ Author-email: "John Evans" <jevans667cc@proton.me>
7
7
  License: 'MIT'
8
8
  Classifier: Programming Language :: Python
9
9
  Classifier: Programming Language :: Python :: 3.9
@@ -19,6 +19,7 @@ glymur/config.py
19
19
  glymur/core.py
20
20
  glymur/jp2box.py
21
21
  glymur/jp2k.py
22
+ glymur/jp2kr.py
22
23
  glymur/options.py
23
24
  glymur/tiff.py
24
25
  glymur/version.py
@@ -41,6 +42,7 @@ tests/test_jp2box_uuid.py
41
42
  tests/test_jp2box_xml.py
42
43
  tests/test_jp2k.py
43
44
  tests/test_jp2k_writes.py
45
+ tests/test_jp2kr.py
44
46
  tests/test_libtiff.py
45
47
  tests/test_openjp2.py
46
48
  tests/test_printing.py
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: Glymur
3
- Version: 0.12.9.post1
3
+ Version: 0.13.0
4
4
  Home-page: https://github.com/quintusdias/glymur
5
5
  Author: 'John Evans'
6
- Author-email: "John Evans" <john.g.evans.ne@gmail.com>
6
+ Author-email: "John Evans" <jevans667cc@proton.me>
7
7
  License: 'MIT'
8
8
  Classifier: Programming Language :: Python
9
9
  Classifier: Programming Language :: Python :: 3.9
@@ -5,7 +5,7 @@ __all__ = [
5
5
  'get_option', 'set_option', 'reset_option',
6
6
  'get_printoptions', 'set_printoptions',
7
7
  'get_parseoptions', 'set_parseoptions',
8
- 'Jp2k', 'Tiff2Jp2k',
8
+ 'Jp2k', 'Jp2kr', 'Tiff2Jp2k',
9
9
  ]
10
10
 
11
11
  # Local imports
@@ -13,7 +13,7 @@ from glymur import version
13
13
  from .options import (get_option, set_option, reset_option,
14
14
  get_printoptions, set_printoptions,
15
15
  get_parseoptions, set_parseoptions)
16
- from .jp2k import Jp2k
16
+ from .jp2k import Jp2k, Jp2kr
17
17
  from .tiff import Tiff2Jp2k
18
18
  from . import data
19
19
 
@@ -179,6 +179,9 @@ class Jp2kBox(object):
179
179
  Jp2kBox
180
180
  Object corresponding to the current box.
181
181
  """
182
+ if fptr.tell() == 1392953:
183
+ # breakpoint()
184
+ pass
182
185
  try:
183
186
  parser = _BOX_WITH_ID[box_id].parse
184
187