-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.09 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
40
41
42
43
44
45
46
47
48
49
50
51
52
[project]
name = "ovld"
version = "0.4.6"
description = "Overloading Python functions"
authors = [
{ name = "Olivier Breuleux", email = "[email protected]" }
]
dependencies = []
readme = "README.md"
license = "MIT"
requires-python = ">= 3.9"
[project.urls]
Homepage = "https://ovld.readthedocs.io/en/latest/"
Documentation = "https://ovld.readthedocs.io/en/latest/"
Repository = "https://github.com/breuleux/ovld"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"codefind~=0.1.6",
"pytest>=8.3.2",
"pytest-cov>=5.0.0",
"pytest-regressions>=2.5.0",
"pytest-benchmark>=4.0.0",
"multimethod>=1.12",
"multipledispatch>=1.0.0",
"plum-dispatch>=2.5.2",
"runtype>=0.5.0",
"fastcore>=1.7.4",
"mkdocs>=1.6.1",
]
[tool.hatch.build.targets.wheel]
packages = ["src/ovld"]
[tool.ruff]
line-length = 80
[tool.ruff.lint]
extend-select = ["I"]
ignore = ["E241", "F722", "E501", "E203", "F811", "F821"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--benchmark-columns=median,min,max"
testpaths = [
"tests",
]