-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
70 lines (61 loc) · 1.46 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dask-geomodeling"
version = "2.8.1.dev0"
description = "On-the-fly operations on geographical maps."
readme = "README.rst"
requires-python = ">=3.10"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
keywords = ["dask"]
authors = [
{name = "Nelen & Schuurmans", email = "info@nelen-schuurmans.nl"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"dask[delayed]>=2022",
"pandas>=2",
"geopandas>=1",
"pytz",
"numpy>=1.23",
"scipy>=1.11",
"pyogrio",
"packaging",
]
[project.optional-dependencies]
test = ["pytest"]
cityhash = ["cityhash"]
[dependency-groups]
dev = [
"pytest",
"zest.releaser",
]
[project.urls]
Homepage = "https://github.com/nens/dask-geomodeling"
[tool.hatch.build.targets.wheel]
packages = ["dask_geomodeling"]
[tool.hatch.build.targets.sdist]
exclude = [
"/docs",
]
[tool.pytest.ini_options]
junit_family = "xunit1"
filterwarnings = [
"error:::dask_geomodeling[.*]",
"error:::numpy[.*]",
"error:::scipy[.*]",
"error:::pandas[.*]",
"error:::dask[.*]",
"ignore:distutils Version classes are deprecated. Use packaging.version instead.::",
]
[tool.flake8]
ignore = ["E203", "E266", "E501", "W503"]
[tool.zest-releaser]
release = false