forked from dask/dask-expr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (66 loc) · 2.18 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
[build-system]
requires = ["setuptools>=62.6", "versioneer[toml]==0.28"]
build-backend = "setuptools.build_meta"
[project]
name = "dask-expr"
description = "High Level Expressions for Dask "
maintainers = [{name = "Matthew Rocklin", email = "[email protected]"}]
license = {text = "BSD"}
keywords = ["dask pandas"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: System :: Distributed Computing",
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"dask == 2024.10.0",
"pyarrow>=14.0.1",
"pandas >= 2",
]
dynamic = ["version"]
[project.optional-dependencies]
analyze = ["crick", "distributed", "graphviz"]
[project.urls]
"Source code" = "https://github.com/dask-contrib/dask-expr/"
[tool.setuptools.packages.find]
exclude = ["*tests*"]
namespaces = false
[tool.coverage.run]
omit = [
"*/test_*.py",
]
source = ["dask_expr"]
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_lines = [
"pragma: no cover",
"raise AssertionError",
"raise NotImplementedError",
]
ignore_errors = true
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "dask_expr/_version.py"
versionfile_build = "dask_expr/_version.py"
tag_prefix = "v"
parentdir_prefix = "dask_expr-"
[tool.pytest.ini_options]
addopts = "-v -rsxfE --durations=10 --color=yes"
filterwarnings = [
'ignore:Passing a BlockManager to DataFrame is deprecated and will raise in a future version. Use public APIs instead:DeprecationWarning', # https://github.com/apache/arrow/issues/35081
'ignore:The previous implementation of stack is deprecated and will be removed in a future version of pandas\.:FutureWarning',
'error:\nA value is trying to be set on a copy of a slice from a DataFrame',
]
xfail_strict = true