File: pyproject.toml

package info (click to toggle)
antimeridian 0.4.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,948 kB
  • sloc: python: 1,165; sh: 8; makefile: 4
file content (72 lines) | stat: -rw-r--r-- 1,877 bytes parent folder | download
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
72
[project]
name = "antimeridian"
version = "0.4.5"
authors = [{ name = "Pete Gadomski", email = "pete.gadomski@gmail.com" }]
description = "Correct 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",
    "Programming Language :: Python :: 3.14",
    "Development Status :: 5 - Production/Stable",
]
dependencies = ["numpy>=1.22.4", "shapely>=2.0"]

[project.urls]
Documentation = "https://www.gadom.ski/antimeridian"
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"

[dependency-groups]
dev = [
    "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",
]

[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"]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"