large-image-source-tiff 1.25.1.dev72__tar.gz → 1.26.1.dev24__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.
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/PKG-INFO +2 -4
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/large_image_source_tiff/__init__.py +2 -6
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/large_image_source_tiff.egg-info/PKG-INFO +2 -4
- large-image-source-tiff-1.26.1.dev24/large_image_source_tiff.egg-info/requires.txt +6 -0
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/setup.py +2 -5
- large-image-source-tiff-1.25.1.dev72/large_image_source_tiff.egg-info/requires.txt +0 -9
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/LICENSE +0 -0
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/README.rst +0 -0
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/large_image_source_tiff/exceptions.py +0 -0
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/large_image_source_tiff/girder_source.py +0 -0
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/large_image_source_tiff/tiff_reader.py +0 -0
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/large_image_source_tiff.egg-info/SOURCES.txt +0 -0
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/large_image_source_tiff.egg-info/dependency_links.txt +0 -0
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/large_image_source_tiff.egg-info/entry_points.txt +0 -0
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/large_image_source_tiff.egg-info/top_level.txt +0 -0
- {large-image-source-tiff-1.25.1.dev72 → large-image-source-tiff-1.26.1.dev24}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: large-image-source-tiff
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.26.1.dev24
|
4
4
|
Summary: A TIFF tilesource for large_image.
|
5
5
|
Home-page: https://github.com/girder/large_image
|
6
6
|
Author: Kitware, Inc.
|
@@ -10,14 +10,12 @@ Keywords: large_image,tile source
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
11
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
13
|
-
Classifier: Programming Language :: Python :: 3.6
|
14
|
-
Classifier: Programming Language :: Python :: 3.7
|
15
13
|
Classifier: Programming Language :: Python :: 3.8
|
16
14
|
Classifier: Programming Language :: Python :: 3.9
|
17
15
|
Classifier: Programming Language :: Python :: 3.10
|
18
16
|
Classifier: Programming Language :: Python :: 3.11
|
19
17
|
Classifier: Programming Language :: Python :: 3.12
|
20
|
-
Requires-Python: >=3.
|
18
|
+
Requires-Python: >=3.8
|
21
19
|
Provides-Extra: girder
|
22
20
|
License-File: LICENSE
|
23
21
|
|
@@ -20,6 +20,8 @@ import itertools
|
|
20
20
|
import json
|
21
21
|
import math
|
22
22
|
import os
|
23
|
+
from importlib.metadata import PackageNotFoundError
|
24
|
+
from importlib.metadata import version as _importlib_version
|
23
25
|
|
24
26
|
import cachetools
|
25
27
|
import numpy as np
|
@@ -36,12 +38,6 @@ from . import tiff_reader
|
|
36
38
|
from .exceptions import (InvalidOperationTiffError, IOOpenTiffError,
|
37
39
|
IOTiffError, TiffError, ValidationTiffError)
|
38
40
|
|
39
|
-
try:
|
40
|
-
from importlib.metadata import PackageNotFoundError
|
41
|
-
from importlib.metadata import version as _importlib_version
|
42
|
-
except ImportError:
|
43
|
-
from importlib_metadata import PackageNotFoundError
|
44
|
-
from importlib_metadata import version as _importlib_version
|
45
41
|
try:
|
46
42
|
__version__ = _importlib_version(__name__)
|
47
43
|
except PackageNotFoundError:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: large-image-source-tiff
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.26.1.dev24
|
4
4
|
Summary: A TIFF tilesource for large_image.
|
5
5
|
Home-page: https://github.com/girder/large_image
|
6
6
|
Author: Kitware, Inc.
|
@@ -10,14 +10,12 @@ Keywords: large_image,tile source
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
11
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
13
|
-
Classifier: Programming Language :: Python :: 3.6
|
14
|
-
Classifier: Programming Language :: Python :: 3.7
|
15
13
|
Classifier: Programming Language :: Python :: 3.8
|
16
14
|
Classifier: Programming Language :: Python :: 3.9
|
17
15
|
Classifier: Programming Language :: Python :: 3.10
|
18
16
|
Classifier: Programming Language :: Python :: 3.11
|
19
17
|
Classifier: Programming Language :: Python :: 3.12
|
20
|
-
Requires-Python: >=3.
|
18
|
+
Requires-Python: >=3.8
|
21
19
|
Provides-Extra: girder
|
22
20
|
License-File: LICENSE
|
23
21
|
|
@@ -27,7 +27,7 @@ try:
|
|
27
27
|
from setuptools_scm import get_version
|
28
28
|
|
29
29
|
version = get_version(root='../..', local_scheme=prerelease_local_scheme)
|
30
|
-
limit_version = f'>={version}' if '+' not in version else ''
|
30
|
+
limit_version = f'>={version}' if '+' not in version and not os.getenv('TOX_ENV_NAME') else ''
|
31
31
|
except (ImportError, LookupError):
|
32
32
|
limit_version = ''
|
33
33
|
|
@@ -45,8 +45,6 @@ setup(
|
|
45
45
|
'Development Status :: 5 - Production/Stable',
|
46
46
|
'License :: OSI Approved :: Apache Software License',
|
47
47
|
'Programming Language :: Python :: 3',
|
48
|
-
'Programming Language :: Python :: 3.6',
|
49
|
-
'Programming Language :: Python :: 3.7',
|
50
48
|
'Programming Language :: Python :: 3.8',
|
51
49
|
'Programming Language :: Python :: 3.9',
|
52
50
|
'Programming Language :: Python :: 3.10',
|
@@ -57,7 +55,6 @@ setup(
|
|
57
55
|
f'large-image{limit_version}',
|
58
56
|
'pylibtiff',
|
59
57
|
'tifftools>=1.2.0',
|
60
|
-
'importlib-metadata<5 ; python_version < "3.8"',
|
61
58
|
],
|
62
59
|
extras_require={
|
63
60
|
'girder': f'girder-large-image{limit_version}',
|
@@ -65,7 +62,7 @@ setup(
|
|
65
62
|
keywords='large_image, tile source',
|
66
63
|
packages=find_packages(exclude=['test', 'test.*']),
|
67
64
|
url='https://github.com/girder/large_image',
|
68
|
-
python_requires='>=3.
|
65
|
+
python_requires='>=3.8',
|
69
66
|
entry_points={
|
70
67
|
'large_image.source': [
|
71
68
|
'tiff = large_image_source_tiff:TiffFileTileSource',
|
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
|