geo-adjacency 1.2.0__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.
@@ -1,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: geo-adjacency
3
- Version: 1.2.0
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
- Home-page: https://asmyth01.github.io/geo-adjacency/
6
5
  License: MIT
7
6
  Keywords: voronoi,adjacency,geospatial,geometry
8
7
  Author: Andrew Smyth
@@ -20,12 +19,13 @@ Classifier: Programming Language :: Python :: 3.11
20
19
  Classifier: Programming Language :: Python :: 3.12
21
20
  Classifier: Topic :: Scientific/Engineering
22
21
  Classifier: Topic :: Scientific/Engineering :: GIS
23
- Requires-Dist: matplotlib (>=3.8.1,<4.0.0)
24
- Requires-Dist: numpy (>=1.26.2,<2.0.0)
25
- Requires-Dist: scipy (>=1.11.3,<2.0.0)
26
- Requires-Dist: setuptools (>=69.0.0,<70.0.0)
27
- Requires-Dist: shapely (>=2.0.2,<3.0.0)
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)
28
27
  Project-URL: Documentation, https://asmyth01.github.io/geo-adjacency/
28
+ Project-URL: Homepage, https://asmyth01.github.io/geo-adjacency/
29
29
  Project-URL: Repository, https://github.com/andrewsmyth/geo-adjacency
30
30
  Description-Content-Type: text/markdown
31
31
 
@@ -87,4 +87,16 @@ _See the [docs](https://asmyth01.github.io/geo-adjacency/index.html) for details
87
87
  target_geoms = [target_geometries[i] for i in target_i_list]
88
88
  ```
89
89
 
90
+ # Development
91
+ ## Installing dependencies
92
+ ```
93
+ poetry env use [python version]
94
+ poetry install
95
+ ```
96
+
97
+ ## Running tests
98
+ `poetry run pytest tests`
99
+
100
+ ## Running a module
101
+ `poetry run python [python file]`
90
102
 
@@ -56,3 +56,15 @@ _See the [docs](https://asmyth01.github.io/geo-adjacency/index.html) for details
56
56
  target_geoms = [target_geometries[i] for i in target_i_list]
57
57
  ```
58
58
 
59
+ # Development
60
+ ## Installing dependencies
61
+ ```
62
+ poetry env use [python version]
63
+ poetry install
64
+ ```
65
+
66
+ ## Running tests
67
+ `poetry run pytest tests`
68
+
69
+ ## Running a module
70
+ `poetry run python [python file]`
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "geo-adjacency"
3
- version = "1.2.0"
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,20 +27,16 @@ classifiers = [
27
27
 
28
28
  [tool.poetry.dependencies]
29
29
  python = "<3.13,>=3.9"
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
-
36
- [tool.poetry.dev-dependencies]
37
- pytest = "^7.4.3"
38
- pylint = "^3.0.2"
39
-
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"
40
35
 
41
36
  [tool.poetry.group.dev.dependencies]
42
37
  pytest = "^7.4.3"
43
38
  pytest-cov = "^4.1.0"
39
+ pylint = "^3.0.2"
44
40
 
45
41
  [build-system]
46
42
  requires = ["poetry-core"]
File without changes