-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (41 loc) · 986 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
[tool.poetry]
name = "file_iter"
version = "0.1.3"
description = "A Swiss Army knife iterator for files (or any iterator of strings)"
authors = ["Jonathon Vandezande"]
keywords = []
license = "MIT"
readme = "README.md"
repository = "https://github.com/jevandezande/file_iter"
[tool.poetry.dependencies]
python = ">=3.12"
[tool.poetry.group.dev.dependencies]
mypy = "*"
pre-commit = "*"
ruff = ">=0.4"
[tool.poetry.group.test.dependencies]
pytest = "*"
pytest-cov = "*"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"D", # pydocstyle
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.mypy]
files = ["file_iter"]
strict = true
pretty = true
[tool.pytest.ini_options]
testpaths = ["file_iter"]
addopts = "--doctest-modules"
doctest_optionflags = "NORMALIZE_WHITESPACE"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"