-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
89 lines (77 loc) · 1.79 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "rlane-libcurses"
version = "1.0.8"
description = "Curses based boxes, menus, loggers"
authors = [
{name = "Russel Lane", email = "russel@rlane.com"},
]
license = {text = "MIT"}
readme = "README.md"
keywords = ["curses", "python", "xterm-256color", "mouse"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules"
]
requires-python = ">=3.10"
dependencies = [
"loguru>=0.7.2",
]
[project.urls]
Homepage = "https://github.com/russellane/libcurses"
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"black>=24.10.0",
"flake8-bugbear>=24.10.31",
"flake8-pydocstyle>=0.2.4",
"flake8-pylint>=0.2.1",
"flake8-pytest-style>=2.0.0",
"flake8-simplify>=0.21.0",
"flake8>=7.1.1",
"isort>=5.13.2",
"mypy>=1.13.0",
"pytest-cov>=6.0.0",
"pytest>=8.3.3",
]
[tool.black]
line-length = "97"
[tool.isort]
line_length = "97"
profile = "black"
[tool.pylint.format]
max-line-length = "97"
[tool.pylint.messages_control]
enable = [
"useless-suppression",
]
fail-on = [
# useless-suppression
"I0021",
]
good-names = [
"x", "y",
"b", "c", "w",
"hi", "lo",
"fg", "bg", "bw",
"ul", "ur", "ll", "lr",
"tf", "rf", "bf", "lf",
"c1", "c2", "c3",
"a", "d", "e", "g", "h", "i",
]
[tool.pydocstyle]
convention = "google"
add-ignore = [
# "D105", # pep257 numpy google # Missing docstring in magic method
"D105",
# "D202", # pep257 numpy google # No blank lines allowed after function docstring
"D202",
]
[tool.mypy]
strict = true
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
# vim: set ts=4 sw=4 et: