22 lines
391 B
TOML
22 lines
391 B
TOML
[build-system]
|
|
requires = [
|
|
"setuptools>=42",
|
|
"pybind11>=2.10.0",
|
|
"setuptools_scm[toml]>=6.2",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools_scm]
|
|
|
|
[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 = "py311"
|