-
-
Notifications
You must be signed in to change notification settings - Fork 377
Expand file tree
/
Copy pathpyproject.toml
More file actions
136 lines (121 loc) · 4.09 KB
/
pyproject.toml
File metadata and controls
136 lines (121 loc) · 4.09 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "datashader"
dynamic = ["version"]
description = "Data visualization toolchain based on aggregating into a grid"
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE.txt"]
requires-python = ">=3.10"
authors = [{ name = "HoloViz developers", email = "developers@holoviz.org" }]
maintainers = [{ name = "HoloViz developers", email = "developers@holoviz.org" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
]
dependencies = [
'colorcet',
'multipledispatch',
'numba',
'numpy',
'pandas',
'param',
'pyct',
'requests',
'scipy',
'toolz',
'packaging',
'xarray',
]
[project.urls]
Blog = "https://blog.holoviz.org/"
Changelog = "https://github.com/holoviz/datashader/blob/main/CHANGELOG.md"
Discord = "https://discord.gg/AXRHnJU6sP"
Discourse = "https://discourse.holoviz.org"
Discussions = "https://github.com/holoviz/datashader/discussions"
Documentation = "https://datashader.org"
Funding = "https://opencollective.com/holoviz"
HoloViz = "https://holoviz.org/"
"Issue Tracker" = "https://github.com/holoviz/datashader/issues?q=sort%3Aupdated-desc+is%3Aissue+is%3Aopen"
Repository = "https://github.com/holoviz/datashader"
[dependency-groups]
tests = ["pytest", "hypothesis"]
[tool.hatch.version]
source = "vcs"
raw-options = { version_scheme = "no-guess-dev" }
[tool.hatch.build.targets.wheel]
include = ["datashader"]
[tool.hatch.build.targets.sdist]
include = ["datashader", "scripts"]
[tool.hatch.build.targets.sdist.force-include]
examples = "datashader/examples"
[tool.hatch.build.hooks.vcs]
version-file = "datashader/_version.py"
[tool.codespell]
ignore-words-list = "trough,thi,ser"
[tool.ruff]
line-length = 100
fix = true
[tool.ruff.lint]
select = [
"E",
"F",
"NPY",
"UP",
"W",
]
[tool.ruff.lint.per-file-ignores]
"test_mpl_ext.py" = ["E402"] # Module level import not at top of file
[tool.pytest.ini_options]
addopts = [
"--pyargs",
"--doctest-modules",
"--doctest-ignore-import-errors",
"--strict-config",
"--strict-markers",
"--color=yes",
]
minversion = "7"
xfail_strict = true
log_cli_level = "INFO"
filterwarnings = [
"error",
"ignore:Passing a (SingleBlockManager|BlockManager) to (Series|GeoSeries|DataFrame|GeoDataFrame) is deprecated:DeprecationWarning", # https://github.com/holoviz/spatialpandas/issues/137
"ignore:Accessing the underlying geometries through the `.data`:DeprecationWarning:dask_geopandas.core", # https://github.com/geopandas/dask-geopandas/issues/264
# 2024-11
"ignore:numpy.ndarray size changed, may indicate binary incompatibility:RuntimeWarning", # https://github.com/pydata/xarray/issues/7259
"ignore:\\s*Dask dataframe query planning is disabled because dask-expr is not installed:FutureWarning", # https://github.com/holoviz/spatialpandas/issues/146
"ignore:The legacy Dask DataFrame implementation is deprecated:FutureWarning", # https://github.com/holoviz/spatialpandas/issues/146
# 2025-04
"ignore:The 'shapely.geos' module is deprecated, and will be removed in a future version:DeprecationWarning",
# 2025-09
"ignore:Signature .* for <class 'numpy.longdouble'>.*:UserWarning",
]
[tool.typos.default]
extend-ignore-re = [
".*(?:#|--|//|/*).*(?:typos):\\s?ignore[^\\n]*\\n",
".*(?:typos):\\s?ignore-next-line[^\\n]*\\n[^\\n]*",
]
[tool.typos.default.extend-words]
arange = "arange"
iy = "iy"
nd = "nd"
pn = "pn"
ser = "ser"
filetimes = "filetimes"
UE = "UE"
Thi = "Thi"