-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
62 lines (52 loc) · 1.16 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
[tool.poetry]
name = "crashtest"
version = "0.4.1"
description = "Manage Python errors with ease"
authors = ["Sébastien Eustace <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/sdispater/crashtest"
repository = "https://github.com/sdispater/crashtest"
include = [
{ path = "crashtest/py.typed" },
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
mypy = "^0.981"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
[tool.isort]
profile = "black"
force_single_line = true
atomic = true
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
src_paths = [
"crashtest",
"tests"
]
add_imports = [
"from __future__ import annotations"
]
filter_files = true
known_first_party = "crashtest"
known_third_party = ["pytest"]
[tool.mypy]
strict = true
files = "crashtest, tests"
show_error_codes = true
pretty = true
[tool.pycln]
all = true
[tool.coverage.report]
exclude_lines = [
"if TYPE_CHECKING:",
"raise NotImplementedError",
]
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"