-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
112 lines (98 loc) · 2.26 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
[project]
name = "data-request-tools"
description = "tools for handling CORDEX data request"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["CORDEX", "CF conventions"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
"pyyaml",
]
dynamic = ["version"]
[project.scripts]
create-cmor-tables = "data_request_tools.cli:cli"
[project.optional-dependencies]
all = ["pooch"]
[project.urls]
repository = "https://github.com/WCRP-CORDEX/data-request-tools.git"
[build-system]
requires = [
"pandas",
"pyyaml",
"setuptools>=45",
"wheel",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["data_request_tools"]
[tool.setuptools.exclude-package-data]
data_request_tools = ["tests/*"]
[tool.setuptools.dynamic]
version = {attr = "data_request_tools.__version__"}
[tool.setuptools_scm]
fallback_version = "999"
write_to = "data_request_tools/_version.py"
write_to_template= '__version__ = "{version}"'
tag_regex= "^(?P<prefix>v)?(?P<version>[^\\+]+)(?P<suffix>.*)?$"
[tool.black]
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.pytest]
python_files = "test_*.py"
testpaths = ["data_request_tools/tests"]
[tool.rstcheck]
report_level = "WARNING"
ignore_roles = [
"pr",
"issue",
]
ignore_directives = [
"ipython",
"autodata",
"autosummary",
]
[tool.nbqa.md]
mdformat = true
[tool.coverage.run]
omit = [
"data_request_tools/tests/*",
"data_request_tools/cleaning.py",
]