-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (80 loc) · 2.49 KB
/
pyproject.toml
File metadata and controls
89 lines (80 loc) · 2.49 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wkls"
version = "1.1.0"
description = "Easy access to global administrative boundaries and geometries via Overture Maps data"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
keywords = ["gis", "geography", "boundaries", "geospatial", "overture-maps", "wkt", "geometry", "admin boundaries", "geojson", "spatial"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"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",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"sedonadb>=0.3.0",
"pyarrow>=14.0.0",
"geoarrow-pyarrow>=0.2.0",
]
authors = [
{ name = "Pranav Toggi", email = "pranav@wherobots.com" },
{ name = "Maxime Petazzoni", email = "max@wherobots.com" },
{ name = "Matthew Powers", email = "mpowers@wherobots.com" }
]
[project.urls]
Homepage = "https://github.com/wherobots/wkls"
Repository = "https://github.com/wherobots/wkls.git"
Issues = "https://github.com/wherobots/wkls/issues"
Documentation = "https://github.com/wherobots/wkls#readme"
Changelog = "https://github.com/wherobots/wkls/releases"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"ruff>=0.11.12",
]
[tool.setuptools.package-data]
wkls = ["data/overture.zstd18.parquet", "py.typed"]
# Explicit sdist excludes so stray local artefacts (virtualenvs, notebooks)
# can't end up in the tarball via non-VCS packaging paths — belt-and-
# suspenders against .gitignore drift.
[tool.hatch.build.targets.sdist]
exclude = [
"/.venv",
"/.venv-*",
"/test_nb.ipynb",
"/docs",
]
[tool.ruff]
target-version = "py39"
line-length = 88
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade
]
ignore = [
"E501", # line too long (handled by formatter)
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]