titiler-application 2.0.0b2__tar.gz → 2.0.2__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.
@@ -48,6 +48,7 @@ htmlcov/
48
48
  .cache
49
49
  nosetests.xml
50
50
  coverage.xml
51
+ titiler-*.xml
51
52
  *.cover
52
53
  .hypothesis/
53
54
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: titiler-application
3
- Version: 2.0.0b2
3
+ Version: 2.0.2
4
4
  Summary: A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL.
5
5
  Project-URL: Homepage, https://developmentseed.org/titiler/
6
6
  Project-URL: Documentation, https://developmentseed.org/titiler/
@@ -22,11 +22,11 @@ Classifier: Programming Language :: Python :: 3.14
22
22
  Classifier: Topic :: Scientific/Engineering :: GIS
23
23
  Requires-Python: >=3.11
24
24
  Requires-Dist: pydantic-settings~=2.0
25
- Requires-Dist: starlette-cramjam<0.6,>=0.4
26
- Requires-Dist: titiler-core[telemetry]==2.0.0b2
27
- Requires-Dist: titiler-extensions[cogeo,stac]==2.0.0b2
28
- Requires-Dist: titiler-mosaic[mosaicjson]==2.0.0b2
29
- Requires-Dist: titiler-xarray==2.0.0b2
25
+ Requires-Dist: starlette-cramjam<1.0,>=0.4
26
+ Requires-Dist: titiler-core[telemetry]==2.0.2
27
+ Requires-Dist: titiler-extensions[cogeo,stac]==2.0.2
28
+ Requires-Dist: titiler-mosaic[mosaicjson]==2.0.2
29
+ Requires-Dist: titiler-xarray==2.0.2
30
30
  Provides-Extra: server
31
31
  Requires-Dist: uvicorn[standard]>=0.12.0; extra == 'server'
32
32
  Description-Content-Type: text/markdown
@@ -30,11 +30,11 @@ classifiers = [
30
30
  ]
31
31
  dynamic = ["version"]
32
32
  dependencies = [
33
- "titiler-core[telemetry]==2.0.0b2",
34
- "titiler-xarray==2.0.0b2",
35
- "titiler-extensions[cogeo,stac]==2.0.0b2",
36
- "titiler-mosaic[mosaicjson]==2.0.0b2",
37
- "starlette-cramjam>=0.4,<0.6",
33
+ "titiler-core[telemetry]==2.0.2", # x-release-please-version
34
+ "titiler-xarray==2.0.2", # x-release-please-version
35
+ "titiler-extensions[cogeo,stac]==2.0.2", # x-release-please-version
36
+ "titiler-mosaic[mosaicjson]==2.0.2", # x-release-please-version
37
+ "starlette-cramjam>=0.4,<1.0",
38
38
  "pydantic-settings~=2.0",
39
39
  ]
40
40
 
@@ -0,0 +1,3 @@
1
+ """titiler.application"""
2
+
3
+ __version__ = "2.0.2" # x-release-please-version
@@ -268,7 +268,7 @@ if api_settings.cors_origins:
268
268
 
269
269
  app.add_middleware(
270
270
  CompressionMiddleware,
271
- minimum_size=0,
271
+ minimum_size=1,
272
272
  exclude_mediatype={
273
273
  "image/jpeg",
274
274
  "image/jpg",
@@ -1,3 +0,0 @@
1
- """titiler.application"""
2
-
3
- __version__ = "2.0.0b2"