-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 807 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
[project]
name = "patchdiff"
version = "0.3.7"
description = "MIT"
authors = [
{ name = "Korijn van Golen", email = "korijn@gmail.com" },
{ name = "Berend Klein Haneveld", email = "berendkleinhaneveld@gmail.com" },
]
requires-python = ">=3.8"
readme = "README.md"
[project.urls]
Homepage = "https://github.com/fork-tongue/patchdiff"
[dependency-groups]
dev = [
"ruff",
"pytest",
"pytest-cov",
"pytest-watch",
"pytest-benchmark",
]
[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"