-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 1.26 KB
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
53
54
55
56
57
[project]
name = "itrx"
version = "0.2.1"
description = "A chainable iterator adapter"
readme = "README.md"
authors = [
{ name = "virgesmith", email = "andrew@friarswood.net" }
]
license = "MIT"
license-files = ["LICENCE.md"]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
dependencies = []
[project.urls]
"Homepage" = "https://github.com/virgesmith/itrx"
"Bug Tracker" = "https://github.com/virgesmith/itrx/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mypy>=1.16.1",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"ruff>=0.12.2",
]
[project.scripts]
apidoc = "scripts.introspect:main"
[tool.pytest.ini_options]
testpaths = [
"."
]
addopts = "--cov=src/itrx --cov-report html --cov-fail-under=100 --doctest-modules --doctest-glob=README.md"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["ARG", "B", "C", "D103", "E", "F", "I", "N", "PERF", "PTH", "RET", "RUF", "SIM", "UP", "W"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"src/test/*.py" = ["D103"]
[tool.mypy]
strict = true
disallow_untyped_defs = true