-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 941 Bytes
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 941 Bytes
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
[project]
authors = [
{ name = "Zebedee Nicholls", email = "zebedee.nicholls@climate-resource.com"},
]
requires-python = ">=3.9"
dependencies = [
"pre-commit>=3.3.1",
]
name = "input4mips-prep"
version = "0.1.0"
description = "Collection of scripts used to help preparing input4MIPs datasets"
readme = "README.md"
[tool.pixi.pypi-dependencies.input4mips_prep]
path = "."
editable = true
# [tool.uv]
# package = true
[tool.pixi.project]
channels = [
"conda-forge",
]
platforms = [
"osx-64",
"osx-arm64",
"linux-64",
"linux-aarch64",
"win-64",
]
[tool.pixi.tasks]
[tool.pixi.dependencies]
input4mips-validation = ">=0.19.1,<0.20"
cfunits = ">=3.3.7,<4"
[tool.ruff.lint]
select = [
"E",
"W",
"F",
"I",
"D",
"PL",
"TRY",
"NPY",
"RUF",
"UP",
"S",
]
unfixable = [ ]
ignore = [
"D200",
"D400",
"UP007",
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"