-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 924 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 924 Bytes
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
40
41
42
43
44
45
[project]
name = "patchdiff"
version = "0.3.8"
description = "MIT"
authors = [
{ name = "Korijn van Golen", email = "korijn@gmail.com" },
{ name = "Berend Klein Haneveld", email = "berendkleinhaneveld@gmail.com" },
]
requires-python = ">=3.9"
readme = "README.md"
[project.urls]
Homepage = "https://github.com/fork-tongue/patchdiff"
[dependency-groups]
dev = [
"ruff",
"pytest",
"pytest-cov",
"pytest-watch",
"pytest-benchmark",
]
observ = [
"observ>=0.17.0",
]
[tool.ruff.lint]
extend-select = [
"F", # Pyflakes (default)
"I", # isort imports
"N", # pep8-naming
"T10", # flake8-debugger
"T20", # flake8-print
"RUF", # ruff
]
[tool.ruff.lint.per-file-ignores]
"patchdiff/__init__.py" = ["F401"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "--benchmark-columns='mean, stddev, rounds'"