-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
134 lines (100 loc) · 2.59 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[tool.poetry]
name = "iters"
version = "0.18.0"
description = "Composable external iteration."
authors = ["nekitdev"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/nekitdev/iters"
repository = "https://github.com/nekitdev/iters"
documentation = "https://nekitdev.github.io/iters"
keywords = ["python", "iter", "iterator"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Typing :: Typed",
]
[tool.poetry.urls]
Chat = "https://nekit.dev/chat"
Issues = "https://github.com/nekitdev/iters/issues"
[[tool.poetry.packages]]
include = "iters"
[tool.poetry.dependencies]
python = ">= 3.8"
typing-aliases = ">= 1.10.1"
typing-extensions = ">= 4.11.0"
named = ">= 1.4.2"
orderings = ">= 1.4.0"
solus = ">= 1.2.2"
async-extensions = ">= 4.0.0"
mixed-methods = ">= 1.1.1"
funcs = ">= 0.10.1"
wraps = ">= 0.11.0"
[tool.poetry.group.format.dependencies]
ruff = "0.4.1"
[tool.poetry.group.check.dependencies]
mypy = "1.9.0"
[tool.poetry.group.check.dependencies.pre-commit]
version = "3.7.0"
python = ">= 3.9"
[tool.poetry.group.test.dependencies]
coverage = "7.4.4"
pytest = "8.1.1"
pytest-cov = "5.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "1.5.3"
mkdocs-material = "9.5.18"
[tool.poetry.group.docs.dependencies.mkdocstrings]
version = "0.24.3"
extras = ["python"]
[tool.poetry.group.release]
optional = true
[tool.poetry.group.release.dependencies]
changelogging = "1.4.2"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
ignore = [
"E402", # module level import not at top of file (circular import fixes)
]
[tool.pytest.ini_options]
addopts = "--cov iters"
testpaths = ["tests"]
[tool.coverage.run]
source = ["iters"]
[tool.coverage.report]
ignore_errors = true
exclude_lines = [
"pragma: never",
"pragma: no cover",
"if TYPE_CHECKING",
"@overload",
"@required",
"raise NotImplementedError",
"raise AssertionError",
"def __repr__",
]
[tool.coverage.html]
directory = "coverage"
[tool.mypy]
strict = true
[tool.changelogging]
name = "iters"
version = "0.18.0"
url = "https://github.com/nekitdev/iters"
directory = "changes"
output = "CHANGELOG.md"
start_string = "<!-- changelogging: start -->"
title_format = "{version} ({date})"
issue_format = "[#{issue}]({url}/pull/{issue})"
bullet = "-"
wrap = true
wrap_size = 100
display = ["feature", "change", "fix", "security", "deprecation", "removal", "internal"]
[build-system]
requires = ["poetry-core >= 1.9.0"]
build-backend = "poetry.core.masonry.api"