large-image-source-mapnik 1.23.8.dev6__tar.gz → 1.26.3.dev30__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-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/PKG-INFO +3 -4
- {large-image-source-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/README.rst +2 -0
- {large-image-source-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/large_image_source_mapnik/__init__.py +2 -6
- {large-image-source-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/large_image_source_mapnik.egg-info/PKG-INFO +3 -4
- {large-image-source-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/large_image_source_mapnik.egg-info/SOURCES.txt +1 -0
- large-image-source-mapnik-1.26.3.dev30/large_image_source_mapnik.egg-info/requires.txt +6 -0
- large-image-source-mapnik-1.26.3.dev30/pyproject.toml +3 -0
- {large-image-source-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/setup.py +3 -6
- large-image-source-mapnik-1.23.8.dev6/large_image_source_mapnik.egg-info/requires.txt +0 -9
- {large-image-source-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/LICENSE +0 -0
- {large-image-source-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/large_image_source_mapnik/girder_source.py +0 -0
- {large-image-source-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/large_image_source_mapnik.egg-info/dependency_links.txt +0 -0
- {large-image-source-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/large_image_source_mapnik.egg-info/entry_points.txt +0 -0
- {large-image-source-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/large_image_source_mapnik.egg-info/top_level.txt +0 -0
- {large-image-source-mapnik-1.23.8.dev6 → large-image-source-mapnik-1.26.3.dev30}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: large-image-source-mapnik
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.26.3.dev30
|
|
4
4
|
Summary: A Mapnik tilesource for large_image.
|
|
5
5
|
Home-page: https://github.com/girder/large_image
|
|
6
6
|
Author: Kitware, Inc.
|
|
@@ -10,13 +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
|
|
18
|
+
Requires-Python: >=3.8
|
|
20
19
|
Provides-Extra: girder
|
|
21
20
|
License-File: LICENSE
|
|
22
21
|
|
|
@@ -142,6 +142,8 @@ Large Image consists of several Python modules designed to work together. These
|
|
|
142
142
|
|
|
143
143
|
- ``large-image-source-vips``: A tile source for reading any files handled by libvips. This also can be used for writing tiled images from numpy arrays.
|
|
144
144
|
|
|
145
|
+
- ``large-image-source-zarr``: A tile source using the zarr library that can handle OME-Zarr (OME-NGFF) files as well as some other zarr files.
|
|
146
|
+
|
|
145
147
|
- ``large-image-source-test``: A tile source that generates test tiles, including a simple fractal pattern. Useful for testing extreme zoom levels.
|
|
146
148
|
|
|
147
149
|
- ``large-image-source-dummy``: A tile source that does nothing.
|
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
#############################################################################
|
|
16
16
|
|
|
17
17
|
import functools
|
|
18
|
+
from importlib.metadata import PackageNotFoundError
|
|
19
|
+
from importlib.metadata import version as _importlib_version
|
|
18
20
|
|
|
19
21
|
import mapnik
|
|
20
22
|
import PIL.Image
|
|
@@ -26,12 +28,6 @@ from large_image.constants import TILE_FORMAT_PIL, SourcePriority
|
|
|
26
28
|
from large_image.exceptions import TileSourceError
|
|
27
29
|
from large_image.tilesource.utilities import JSONDict
|
|
28
30
|
|
|
29
|
-
try:
|
|
30
|
-
from importlib.metadata import PackageNotFoundError
|
|
31
|
-
from importlib.metadata import version as _importlib_version
|
|
32
|
-
except ImportError:
|
|
33
|
-
from importlib_metadata import PackageNotFoundError
|
|
34
|
-
from importlib_metadata import version as _importlib_version
|
|
35
31
|
try:
|
|
36
32
|
__version__ = _importlib_version(__name__)
|
|
37
33
|
except PackageNotFoundError:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: large-image-source-mapnik
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.26.3.dev30
|
|
4
4
|
Summary: A Mapnik tilesource for large_image.
|
|
5
5
|
Home-page: https://github.com/girder/large_image
|
|
6
6
|
Author: Kitware, Inc.
|
|
@@ -10,13 +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
|
|
18
|
+
Requires-Python: >=3.8
|
|
20
19
|
Provides-Extra: girder
|
|
21
20
|
License-File: LICENSE
|
|
22
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
|
|
|
@@ -35,7 +35,6 @@ setup(
|
|
|
35
35
|
name='large-image-source-mapnik',
|
|
36
36
|
use_scm_version={'root': '../..', 'local_scheme': prerelease_local_scheme,
|
|
37
37
|
'fallback_version': '0.0.0'},
|
|
38
|
-
setup_requires=['setuptools-scm'],
|
|
39
38
|
description=description,
|
|
40
39
|
long_description=long_description,
|
|
41
40
|
license='Apache Software License 2.0',
|
|
@@ -45,18 +44,16 @@ setup(
|
|
|
45
44
|
'Development Status :: 5 - Production/Stable',
|
|
46
45
|
'License :: OSI Approved :: Apache Software License',
|
|
47
46
|
'Programming Language :: Python :: 3',
|
|
48
|
-
'Programming Language :: Python :: 3.6',
|
|
49
|
-
'Programming Language :: Python :: 3.7',
|
|
50
47
|
'Programming Language :: Python :: 3.8',
|
|
51
48
|
'Programming Language :: Python :: 3.9',
|
|
52
49
|
'Programming Language :: Python :: 3.10',
|
|
53
50
|
'Programming Language :: Python :: 3.11',
|
|
51
|
+
'Programming Language :: Python :: 3.12',
|
|
54
52
|
],
|
|
55
53
|
install_requires=[
|
|
56
54
|
f'large-image{limit_version}',
|
|
57
55
|
f'large-image-source-gdal{limit_version}',
|
|
58
56
|
'mapnik',
|
|
59
|
-
'importlib-metadata<5 ; python_version < "3.8"',
|
|
60
57
|
],
|
|
61
58
|
extras_require={
|
|
62
59
|
'girder': f'girder-large-image{limit_version}',
|
|
@@ -64,7 +61,7 @@ setup(
|
|
|
64
61
|
keywords='large_image, tile source',
|
|
65
62
|
packages=find_packages(exclude=['test', 'test.*']),
|
|
66
63
|
url='https://github.com/girder/large_image',
|
|
67
|
-
python_requires='>=3.
|
|
64
|
+
python_requires='>=3.8',
|
|
68
65
|
entry_points={
|
|
69
66
|
'large_image.source': [
|
|
70
67
|
'mapnik = large_image_source_mapnik:MapnikFileTileSource',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|