g722_1_mod/pyproject.toml
Henry Schreiner fae6ade894
chore: move to using Ruff (#140)
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
2023-02-23 08:23:57 -05:00

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"