forked from xarray-contrib/flox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
132 lines (117 loc) · 2.59 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
[project]
name = "flox"
description = "GroupBy operations for dask.array"
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["xarray", "dask", "groupby"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"pandas",
"numpy>=1.20",
"numpy_groupies>=0.9.19",
"toolz",
]
dynamic=["version"]
[project.urls]
homepage = "https://flox.readthedocs.io"
documentation = "https://flox.readthedocs.io"
repository = "https://github.com/xarray-contrib/flox.git"
changelog = "https://github.com/xarray-contrib/flox/releases"
[project.optional-dependencies]
all = ["cachey", "dask", "numba", "xarray"]
test = ["netCDF4"]
[build-system]
requires = [
"pandas",
"numpy>=1.20",
"numpy_groupies>=0.9.19",
"toolz",
"setuptools>=61.0.0",
"wheel",
"setuptools_scm[toml]>=7.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["flox"]
[tool.setuptools.dynamic]
version = {attr = "flox.__version__"}
[tool.setuptools_scm]
fallback_version = "999"
write_to = "flox/_version.py"
write_to_template= '__version__ = "{version}"'
[tool.black]
line-length = 100
target-version = ["py38"]
[tool.ruff]
target-version = "py38"
builtins = ["ellipsis"]
exclude = [
".eggs",
"doc",
]
# E402: module level import not at top of file
# E501: line too long - let black worry about that
# E731: do not assign a lambda expression, use a def
ignore = [
"E402",
"E501",
"E731",
]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I",
# Pyupgrade
"UP",
]
[tool.ruff.isort]
known-first-party = ["flox"]
known-third-party = [
"dask",
"numpy",
"numpy_groupies",
"pandas",
"pkg_resources",
"pytest",
"setuptools",
"xarray"
]
[tool.mypy]
allow_redefinition = true
exclude = "properties|asv_bench|doc|tests|flycheck"
files = "flox/*.py"
show_error_codes = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module=[
"cachey",
"cftime",
"dask.*",
"importlib_metadata",
"numpy_groupies",
"matplotlib.*",
"pandas",
"setuptools",
"toolz"
]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--tb=short"
[tool.codespell]
ignore-words-list = "nd,nax"
skip = "*.html"