-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (47 loc) · 998 Bytes
/
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
53
54
55
[tool.doks]
auto = true
[tool.poetry]
name = "tdir"
version = "1.8.2"
description = "🗃 Create and fill a temporary directory 🗃"
authors = ["Tom Ritchford <[email protected]>"]
license = "MIT"
readme = "README.md"
include = ["tdir.pyi"]
repository = "https://github.com/rec/tdir"
homepage = "https://github.com/rec/tdir"
documentation = "https://rec.github.io/tdir"
[tool.poetry.dependencies]
python = ">=3.8"
dek = "*"
xmod = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
coverage = "*"
doks = "*"
flake8 = "*"
isort = "*"
mypy = "*"
pytest = "*"
ruff = "*"
[tool.coverage.run]
branch = true
source = ["tdir"]
[tool.coverage.report]
fail_under = "93"
skip_covered = true
exclude_lines = [
"pragma: no cover",
"if False:",
"if __name__ == .__main__.:",
"raise NotImplementedError",
]
[tool.ruff]
line-length = 88
[tool.ruff.format]
quote-style = "single"
[tool.mypy]
strict = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"