-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
124 lines (110 loc) · 2.22 KB
/
pyproject.toml
File metadata and controls
124 lines (110 loc) · 2.22 KB
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
[build-system]
requires = [
"setuptools>=77.0.0",
"setuptools_scm[toml]>=6.0",
"wheel"
]
[project]
name = "esgf-qa"
description = "QA based on compliance-checker"
readme = "README.md"
keywords = ["compliance checker", "plugin", "wcrp", "cmip", "cmip6", "cmip7", "cordex", "cordex-cmip6", "qc", "qa", "quality control", "quality assurance", "esgf"]
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "Martin Schupfner", email = "[email protected]"}
]
maintainers = [
{name = "Martin Schupfner", email = "[email protected]"}
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"cftime",
"cf_xarray",
"compliance-checker>=5.3.0",
"dask",
"netCDF4",
"packaging",
"pandas",
"textual",
"xarray",
"cc-plugin-cc6>=0.4.0",
"cc-plugin-wcrp"
]
dynamic = [
"version"
]
[project.optional-dependencies]
dev = [
"black",
"build",
"isort",
"flake8",
"flake8-builtins",
"flake8-comprehensions",
"flake8-mutable",
"flake8-print",
"pre-commit",
"pytest>=7.0.0",
"pytest-flake8",
"pytest-asyncio",
"ruff>=0.1.0",
"twine",
"wheel"
]
[project.scripts]
esgqa = "esgf_qa.run_qa:main"
esgqaviewer = "esgf_qa.qaviewer:main"
[project.urls]
homepage = "https://github.com/ESGF/esgf-qa"
repository = "https://github.com/ESGF/esgf-qa"
[tool.black]
target-version = [
"py310",
"py311",
"py312",
"py313"
]
[tool.check-manifest]
ignore = [
"*.yml",
".coveragerc",
"Makefile",
"docs",
"docs/*",
"notebooks",
"notebooks/*",
"tests",
"tests/*"
]
[tool.isort]
profile = "black"
py_version = 310
[tool.pytest.ini_options]
filterwarnings = [
"ignore::UserWarning",
"ignore::RuntimeWarning"
]
[tool.ruff]
src = ["esgf_qa"]
line-length = 100
target-version = "py310"
[tool.ruff.format]
line-ending = "auto"
[tool.ruff.lint]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["esgf_qa"]
lines-after-imports = 1
[tool.setuptools.packages.find]
exclude = ["fonts"]
[tool.setuptools_scm]
fallback_version = "999"
write_to = "esgf_qa/_version.py"