-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1000 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (38 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geopandas-spatial-join-benchmarks"
version = "0.1.0"
description = "Benchmark spatial joins across GeoPandas, Shapely 2, and PostGIS"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Spatial Workflow" }
]
dependencies = []
[project.optional-dependencies]
shapely = ["shapely>=2.0"]
geopandas = ["geopandas>=0.14", "shapely>=2.0"]
postgis = ["psycopg[binary]>=3.1"]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
]
all = [
"shapely>=2.0",
"geopandas>=0.14",
"psycopg[binary]>=3.1",
"pytest>=8.0",
"pytest-cov>=5.0",
]
[project.scripts]
gsjb = "geopandas_spatial_join_benchmarks.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-q --cov=geopandas_spatial_join_benchmarks --cov-report=term-missing --cov-fail-under=100"
testpaths = ["tests"]