-
Notifications
You must be signed in to change notification settings - Fork 93
/
pyproject.toml
151 lines (140 loc) · 3.17 KB
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64.0.0",
"tomli ; python_version < '3.11'",
"versioneer>=0.24",
]
[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 = { text = "Apache-2.0" }
requires-python = ">=3.9"
dependencies = [
"dask >=2023.5.1",
"distributed >=2023.5.1",
"pynvml >=11.0.0,<11.5",
"numpy >=1.21",
"numba >=0.57",
"pandas >=1.3,<1.6.0dev0",
"zict >=2.0.0",
]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[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",
]
test = [
"pytest",
]
[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.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
order_by_type = true
known_dask = [
"dask",
"distributed",
]
known_rapids = [
"rmm",
"cuml",
"cugraph",
"dask_cudf",
"cudf",
"ucp",
]
known_first_party = [
"dask_cuda",
]
default_section = "THIRDPARTY"
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"DASK",
"RAPIDS",
"FIRSTPARTY",
"LOCALFOLDER",
]
skip = [
".eggs",
".git",
".hg",
".mypy_cache",
".tox",
".venv",
"build",
"dist",
"__init__.py",
"versioneer.py",
]
[tool.pytest.ini_options]
filterwarnings = [
"error::DeprecationWarning",
"error::FutureWarning",
"ignore::DeprecationWarning:pkg_resources",
"ignore:distutils Version classes are deprecated.*:DeprecationWarning:",
# tornado 6.2, remove when dask/distributed#6669 is fixed
"ignore:clear_current is deprecated:DeprecationWarning:",
"ignore:make_current is deprecated:DeprecationWarning:",
# remove after https://github.com/rapidsai/dask-cuda/issues/1087 is closed
"ignore:There is no current event loop:DeprecationWarning:tornado",
# remove after unpinning Dask/Distributed 2023.3.2
"ignore:.*np.bool.*:DeprecationWarning:",
]
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
exclude = [
"docs",
"tests",
"docs.*",
"tests.*",
]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "dask_cuda/_version.py"
versionfile_build = "dask_cuda/_version.py"
tag_prefix = "v"
parentdir_prefix = "dask_cuda-"