-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (57 loc) · 1.47 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
[tool.poetry]
name = "tkinter_layout_helpers"
version = "0.3.0"
description = "A library which is intended to simplify a placement of widgets with .grid() and .pack() methods"
authors = ["insolor <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/insolor/tkinter-layout-helpers"
repository = "https://github.com/insolor/tkinter-layout-helpers"
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",
]
[tool.poetry.dependencies]
python = "^3.8"
typing-extensions = "*"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.4,<9.0.0"
pytest-mock = "^3.11.1"
pytest-cov = ">=4.1,<6.0"
ruff = ">=0.4.7,<0.9.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py38"
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D", # Warning about docstrings are suppressed for now
"ANN002",
"ANN003",
"ANN101",
"C408",
]
fixable = ["ALL"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"S101", # Don't warn about using of asserts in tests
"ANN001",
"ANN201",
"ANN202",
"D", # Don't warn about missing documentation in tests
]
"examples/*" = [
"ANN",
"D",
"S311",
"PL",
"INP001",
"ERA001",
]