-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpyproject.toml
More file actions
179 lines (163 loc) · 4.87 KB
/
pyproject.toml
File metadata and controls
179 lines (163 loc) · 4.87 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION.
# SPDX-License-Identifier: Apache-2.0
[build-system]
build-backend = "rapids_build_backend.build"
requires = [
"rapids-build-backend>=0.4.0,<0.5.0",
"setuptools>=77.0.0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
[project]
name = "dask-cuda"
dynamic = ["version"]
description = "Utilities for Dask and CUDA interactions"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "NVIDIA Corporation" },
]
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.11"
dependencies = [
"click >=8.1",
"cuda-core>=0.3.2",
"numpy>=1.23,<3.0",
"nvidia-ml-py>=12",
"pandas>=1.3",
"rapids-dask-dependency==26.6.*,>=0.0.0a0",
"zict>=2.0.0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
classifiers = [
"Intended Audience :: Developers",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.scripts]
dask-cuda-worker = "dask_cuda.cli:worker"
dask-cuda-config = "dask_cuda.cli:config"
[project.entry-points.dask_cli]
cuda = "dask_cuda.cli:cuda"
[project.optional-dependencies]
docs = [
"numpydoc>=1.1.0",
"sphinx",
"sphinx-click>=2.7.1",
"sphinx-rtd-theme>=0.5.1",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
cu12 = [
"cuda-core[cu12]>=0.3.2",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
cu13 = [
"cuda-core[cu13]>=0.3.2",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
test = [
"pytest",
"pytest-cov",
"pytest-rerunfailures!=16.0.0",
"pytest-timeout",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
test-cu12 = [
"cudf-cu12==26.6.*,>=0.0.0a0",
"dask-cudf-cu12==26.6.*,>=0.0.0a0",
"distributed-ucxx-cu12==0.50.*,>=0.0.0a0",
"kvikio-cu12==26.6.*,>=0.0.0a0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
test-cu13 = [
"cudf-cu13==26.6.*,>=0.0.0a0",
"dask-cudf-cu13==26.6.*,>=0.0.0a0",
"distributed-ucxx-cu13==0.50.*,>=0.0.0a0",
"kvikio-cu13==26.6.*,>=0.0.0a0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
[project.urls]
Homepage = "https://github.com/rapidsai/dask-cuda"
Documentation = "https://docs.rapids.ai/api/dask-cuda/stable/"
Source = "https://github.com/rapidsai/dask-cuda"
[tool.coverage.run]
disable_warnings = [
"include-ignored",
]
include = [
"dask_cuda/*",
]
omit = [
"dask_cuda/tests/*",
]
[tool.ruff]
line-length = 88
extend-exclude = [
"docs",
"__init__.py",
]
[tool.ruff.lint]
ignore = [
# Assigning lambda expression
"E731",
# Ambiguous variable names
"E741",
# whitespace before :
"E203",
# whitespace after ,
"E231",
]
[tool.ruff.lint.isort]
combine-as-imports = true
order-by-type = true
known-first-party = [
"dask_cuda",
]
default-section = "third-party"
section-order = [
"future",
"standard-library",
"third-party",
"dask",
"rapids",
"first-party",
"local-folder",
]
[tool.ruff.lint.isort.sections]
"dask" = [
"dask",
"distributed",
]
"rapids" = [
"rmm",
"cuml",
"cugraph",
"dask_cudf",
"cudf",
"ucp",
]
[tool.pytest.ini_options]
addopts = "--tb=native"
filterwarnings = [
"error::DeprecationWarning",
"error::FutureWarning",
# remove after https://github.com/rapidsai/dask-cuda/issues/1087 is closed
"ignore:There is no current event loop:DeprecationWarning:tornado",
]
[tool.rapids-build-backend]
build-backend = "setuptools.build_meta"
dependencies-file = "dependencies.yaml"
disable-cuda = true
matrix-entry = "cuda_suffixed=true"
[tool.setuptools.dynamic]
version = {file = "dask_cuda/VERSION"}
[tool.setuptools.packages.find]
exclude = [
"docs",
"tests",
"docs.*",
"examples.*",
"tests.*",
]
[tool.pydistcheck]
select = [
"distro-too-large-compressed",
]
# PyPI hard limit is 1GiB, but try to keep these as small as possible
max_allowed_size_compressed = '10Mi'