geo-adjacency 1.2.1__tar.gz → 1.2.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.
- {geo_adjacency-1.2.1 → geo_adjacency-1.2.2}/PKG-INFO +6 -6
- {geo_adjacency-1.2.1 → geo_adjacency-1.2.2}/pyproject.toml +6 -6
- {geo_adjacency-1.2.1 → geo_adjacency-1.2.2}/LICENSE +0 -0
- {geo_adjacency-1.2.1 → geo_adjacency-1.2.2}/README.md +0 -0
- {geo_adjacency-1.2.1 → geo_adjacency-1.2.2}/geo_adjacency/__init__.py +0 -0
- {geo_adjacency-1.2.1 → geo_adjacency-1.2.2}/geo_adjacency/adjacency.py +0 -0
- {geo_adjacency-1.2.1 → geo_adjacency-1.2.2}/geo_adjacency/exception.py +0 -0
- {geo_adjacency-1.2.1 → geo_adjacency-1.2.2}/geo_adjacency/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: geo-adjacency
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.2
|
|
4
4
|
Summary: A package to determine which geometries are adjacent to each other, accounting for obstacles and gaps between features.
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: voronoi,adjacency,geospatial,geometry
|
|
@@ -19,11 +19,11 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
20
|
Classifier: Topic :: Scientific/Engineering
|
|
21
21
|
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
22
|
-
Requires-Dist: matplotlib (>=3.8.1
|
|
23
|
-
Requires-Dist: numpy (>=1.26.2
|
|
24
|
-
Requires-Dist: scipy (>=1.11.3
|
|
25
|
-
Requires-Dist: setuptools (>=69.0.0
|
|
26
|
-
Requires-Dist: shapely (>=2.0.2
|
|
22
|
+
Requires-Dist: matplotlib (>=3.8.1)
|
|
23
|
+
Requires-Dist: numpy (>=1.26.2)
|
|
24
|
+
Requires-Dist: scipy (>=1.11.3)
|
|
25
|
+
Requires-Dist: setuptools (>=69.0.0)
|
|
26
|
+
Requires-Dist: shapely (>=2.0.2)
|
|
27
27
|
Project-URL: Documentation, https://asmyth01.github.io/geo-adjacency/
|
|
28
28
|
Project-URL: Homepage, https://asmyth01.github.io/geo-adjacency/
|
|
29
29
|
Project-URL: Repository, https://github.com/andrewsmyth/geo-adjacency
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "geo-adjacency"
|
|
3
|
-
version = "1.2.
|
|
3
|
+
version = "1.2.2"
|
|
4
4
|
description = "A package to determine which geometries are adjacent to each other, accounting for obstacles and gaps between features."
|
|
5
5
|
authors = ["Andrew Smyth <andrew.j.smyth.89@gmail.com>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -27,11 +27,11 @@ classifiers = [
|
|
|
27
27
|
|
|
28
28
|
[tool.poetry.dependencies]
|
|
29
29
|
python = "<3.13,>=3.9"
|
|
30
|
-
scipy = "
|
|
31
|
-
shapely = "
|
|
32
|
-
numpy = "
|
|
33
|
-
matplotlib = "
|
|
34
|
-
setuptools = "
|
|
30
|
+
scipy = ">=1.11.3"
|
|
31
|
+
shapely = ">=2.0.2"
|
|
32
|
+
numpy = ">=1.26.2"
|
|
33
|
+
matplotlib = ">=3.8.1"
|
|
34
|
+
setuptools = ">=69.0.0"
|
|
35
35
|
|
|
36
36
|
[tool.poetry.group.dev.dependencies]
|
|
37
37
|
pytest = "^7.4.3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|