-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 1.25 KB
/
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
31
32
33
34
35
36
37
38
39
[project]
name = "splinex"
authors = [
{ name="Cornelius V. Braun", email="[email protected]" },
]
description = "jax implementation of spline interpolation"
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["version"]
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["splinex*"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "D", "A", "N", "B", "SIM", "C4", "TID"]
ignore = [
"E741", # Ambiguous variable name
"D213", # Multi-line docstring summary should start at the second line
"D105", # Missing docstring in magic method
"D107", # Missing docstring in __init__
"D203", # 1 blank line required before class docstring
"D401", # First line should be in imperative mood; try rephrasing
"D407", # Missing dashed underline after section
"D406", # Section name should end with a newline
"D106", # Missing docstring in public nested class
"B006", # Do not use mutable data structures for argument defaults
"B008", # Do not perform function calls in argument defaults
"B905", # `zip()` without an explicit `strict=` parameter
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["D"]