23 lines
435 B
TOML
23 lines
435 B
TOML
[build-system]
|
|
requires = [
|
|
"setuptools>=42",
|
|
"pybind11>=2.10.0",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.cibuildwheel]
|
|
test-command = "python {project}/tests/test.py"
|
|
test-skip = "*universal2:arm64"
|
|
|
|
[tool.ruff]
|
|
extend-select = [
|
|
"B", # flake8-bugbear
|
|
"I", # isort
|
|
"PGH", # pygrep-hooks
|
|
"RUF", # Ruff-specific
|
|
"UP", # pyupgrade
|
|
]
|
|
extend-ignore = [
|
|
"E501", # Line too long
|
|
]
|
|
target-version = "py37"
|