-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (76 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
83 lines (76 loc) · 1.79 KB
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
[project]
name = "tkinter_layout_helpers"
version = "0.6.0"
description = "A library which is intended to simplify a placement of widgets with .grid() and .pack() methods"
authors = [{ name = "insolor", email = "insolor@gmail.com" }]
requires-python = ">=3.9"
readme = "README.md"
license = "MIT"
keywords = [
"tkinter",
"grid",
"pack",
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"typing-extensions", # For Self type. Remove after dropping Python < 3.11
]
[project.urls]
Homepage = "https://github.com/insolor/tkinter-layout-helpers"
Repository = "https://github.com/insolor/tkinter-layout-helpers"
Documentation = "https://insolor.github.io/tkinter-layout-helpers"
[dependency-groups]
dev = [
"pytest>=7.4.4,<9.0.0",
"pytest-mock>=3.11.1,<4",
"pytest-cov>=4.1,<8.0",
"ruff>=0.4.7,<0.16.0",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.16",
"mkdocstrings>=0.30.0",
"mkdocstrings-python>=1.16.12",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
target-version = "py39"
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ANN002",
"ANN003",
"C408",
"D100",
"D104",
"D205",
"D212",
"D401",
]
fixable = ["ALL"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"ANN001",
"ANN201",
"ANN202",
"D", # Don't warn about missing documentation in tests
"S101", # Don't warn about using of asserts in tests
"PLR2004", # Don't warn about magic values in tests
]
"examples/*" = [
"ANN",
"D",
"S311",
"PL",
"INP001",
"ERA001",
]