forked from WCRP-CMIP/cmip7-cmor-tables
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 779 Bytes
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 779 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
[project]
authors = [
{ name = "Matthew Mizielinski"},
]
requires-python = ">=3.13,<3.14"
dependencies = [
"pre-commit>=3.3.1", "cmip7-data-request-api==1.3",
]
name = "prototype"
version = "DR-1.2.2.2-v1.0.3"
description = "CMOR tables for CMIP7"
readme = "README.md"
[tool.pixi.workspace]
channels = [
"conda-forge",
]
platforms = [
"osx-64",
"osx-arm64",
"linux-64",
# "linux-aarch64",
# "win-64",
]
[tool.pixi.tasks]
[tool.pixi.dependencies]
cmor = "3.13.0.*"
jupyterlab = ">=4.5.0,<5"
[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"