-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (48 loc) · 1.05 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
53
54
55
56
57
[tool.doks]
source = 'abbrev.py'
target = 'README.rst'
[tool.poetry]
name = "abbrev"
version = "1.2.1"
description = "🐜 Expand abbreviations 🐜"
authors = ["Tom Ritchford <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/rec/abbrev"
homepage = "https://github.com/rec/abbrev"
documentation = "https://rec.github.io/abbrev"
[tool.poetry.dependencies]
python = ">=3.8"
xmod = "*"
[tool.poetry.group.dev.dependencies]
coverage = "*"
flake8 = "*"
pytest = "*"
readme-renderer = "*"
mkdocs = "*"
mypy = "*"
ruff = "*"
mkdocstrings = {extras = ["python"], version = "*"}
mkdocs-material = "*"
[tool.coverage]
[tool.coverage.run]
branch = true
source = ["abbrev"]
[tool.coverage.report]
fail_under = 90
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"