-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
132 lines (111 loc) · 3.07 KB
/
pyproject.toml
File metadata and controls
132 lines (111 loc) · 3.07 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
125
126
127
128
129
130
131
132
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "f2py-cmake"
authors = [
{ name = "Henry Schreiner", email = "[email protected]" },
]
description = "CMake helpers for building F2Py modules"
readme = "README.md"
license.file = "LICENSE"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = [
"numpy",
"importlib_resources; python_version<'3.9'",
]
[project.entry-points."cmake.module"]
any = "f2py_cmake.cmake"
[project.scripts]
f2py-cmake = "f2py_cmake.__main__:main"
[dependency-groups]
test = [
"pytest >=6",
"scikit-build-core",
]
dev = [{ include-group = "test" }]
[project.urls]
Homepage = "https://github.com/scikit-build/f2py-cmake"
"Bug Tracker" = "https://github.com/scikit-build/f2py-cmake/issues"
Discussions = "https://github.com/scikit-build/f2py-cmake/discussions"
Changelog = "https://github.com/scikit-build/f2py-cmake/releases"
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "src/f2py_cmake/_version.py"
[tool.hatch.envs.default]
installer = "uv"
[tool.hatch.envs.hatch-test]
features = ["test"]
extra-dependencies = ["cmake", "ninja"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
filterwarnings = [
"error",
]
log_level = "INFO"
testpaths = [
"tests",
]
[tool.coverage]
run.source = ["f2py_cmake"]
report.exclude_also = [
'\.\.\.',
'if typing.TYPE_CHECKING:',
]
[tool.mypy]
files = ["src", "tests"]
python_version = "3.8"
warn_unused_configs = true
strict = true
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
warn_unreachable = true
[tool.ruff]
show-fixes = true
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"PLR2004", # Magic value used in comparison
"S101", # Assert is used by mypy and pytest
"S603", # We aren't using untrusted input
"D", # Too many doc requests
"COM812", # Trailing commas teach the formatter
]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["T20", "INP001"]
"noxfile.py" = ["T20"]
[tool.pylint]
py-version = "3.8"
ignore-paths = [".*/_version.py"]
reports.output-format = "colorized"
similarities.ignore-imports = "yes"
messages_control.disable = [
"design",
"fixme",
"line-too-long",
"missing-module-docstring",
"wrong-import-position",
]
[tool.repo-review.ignore]
PY004 = "All docs in README"