-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
71 lines (62 loc) · 1.78 KB
/
pyproject.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "antimeridian"
version = "0.3.11"
authors = [{ name = "Pete Gadomski", email = "[email protected]" }]
description = "Fix GeoJSON geometries that cross the 180th meridian"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["geojson", "antimeridian", "shapely"]
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
]
dependencies = ["numpy>=1.22.4", "shapely>=2.0"]
[project.urls]
Documentation = "https://antimeridian.readthedocs.io"
Github = "https://github.com/gadomski/antimeridian"
Issues = "https://github.com/gadomski/antimeridian/issues"
Changelog = "https://github.com/gadomski/antimeridian/blob/main/CHANGELOG.md"
[project.optional-dependencies]
cli = ["click>=8.1.6"]
[project.scripts]
antimeridian = "antimeridian._cli:cli"
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = [
"shapely",
"shapely.geometry",
"shapely.affinity",
"shapely.validation",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
filterwarnings = ["error"]
[tool.ruff]
lint.select = ["F", "E", "W", "I", "ERA", "RUF"]
[tool.uv]
dev-dependencies = [
"cartopy>=0.24.1",
"matplotlib>=3.9.2",
"mike>=2.1.3",
"mkdocs-click>=0.8.1",
"mkdocs-jupyter>=0.25.1",
"mkdocs-material[imaging]>=9.5.47",
"mkdocstrings[python]>=0.27.0",
"mypy>=1.2",
"packaging>=24.0",
"pre-commit>=4.0",
"pytest-console-scripts>=1.4",
"pytest>=8.0",
"ruff>=0.6.1",
"scipy>=1.14.1",
"shapely>=2.0.6",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"