-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (44 loc) · 1.06 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
[tool.poetry]
name = "tklife"
version = "2.4.0-dev2"
description = "Make Tk life easier"
authors = ["Cory Laughlin <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
[tool.poetry.group.dev.dependencies]
pytest-cov = "^4.1.0"
pytest = "^7.4.3"
pytest-mock = "^3.7.0"
black = "^23.10.1"
mypy = "^1.6.1"
pylint = "^3.0.2"
isort = "^5.12.0"
docformatter = "^1.7.5"
pre-commit = "^3.5.0"
[tool.poetry.group.doc.dependencies]
sphinx = "^7.2.6"
m2r2 = "^0.3.3.post2"
esbonio = "^0.16.2"
[tool.pytest.ini_options]
addopts = "--cov=tklife --cov-branch --cov-report xml --cov-report html -vvv"
[tool.mypy]
ignore_missing_imports = true
python_version = 3.11
[tool.coverage.report]
exclude_also = ["if TYPE_CHECKING:"]
[tool.autoflake]
remove_all_unused_imports = true
recursive = true
remove_unused_variables = true
[tool.isort]
profile = "black"
[tool.docformatter]
recursive = true
blank = true
black = true
in-place = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"