-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
30 lines (25 loc) · 948 Bytes
/
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
[project]
name = "sqruff"
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.9"
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=6.0.0",
"ruff>=0.8.0",
"maturin>=1.7.4"
]
[tool.pytest.ini_options]
python_files = ["*_test.py"]
testpaths = ["crates"]
addopts = "-v --cov"
[build-system]
requires = ["setuptools>=64.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["crates/lib/src/templaters"]
[tool.ruff.lint]
select = ["ALL"]
ignore = ["S101", "UP006", "ANN001", "PT006", "ARG005", "SLF001", "PLR0913", "ANN201", "FIX002", "FA100", "TD003", "TD002", "SIM118", "PLW2901", "PLR0915", "PLR0912", "C901", "EM102", "TRY003", "FBT002", "FBT001", "ARG002", "B904", "E501", "D417", "EM101", "B904", "INP001", "FIX004", "ANN401", "C408", "D107", "ANN204", "D400", "D401", "D101", "UP035", "D103", "D100", "D211", "D213", "D203", "ISC001", "COM812"]