-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
62 lines (51 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
[build-system]
requires = ["pdm-backend", "setuptools"]
build-backend = "pdm.backend"
[project]
name = "keywin"
version = "0.1.0"
authors = [{ name = "winstxnhdw", email = "[email protected]" }]
description = "A fast Python wrapper for Win32's SendInput function."
license = { text = "MIT License" }
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Microsoft :: Windows",
]
[project.urls]
"Homepage" = "https://github.com/winstxnhdw/KeyWin"
"Bug Tracker" = "https://github.com/winstxnhdw/KeyWin/issues"
[tool.setuptools]
include-package-data = false
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "single"
[tool.pylint.format]
good-names = ["x", "y", "z"]
[tool.pylint.messages_control]
disable = [
"missing-module-docstring",
"no-name-in-module",
"useless-import-alias",
"line-too-long",
"too-few-public-methods",
]
[tool.pyright]
typeCheckingMode = "strict"
reportUnknownVariableType = false
reportUnknownMemberType = false
reportMissingTypeStubs = false
[tool.pytest.ini_options]
testpaths = ["."]
[tool.pdm.build]
run-setuptools = true
[tool.pdm.dev-dependencies]
lint = ["pylint>=3.3.4", "pyright>=1.1.393", "ruff>=0.9.5"]
test = ["pytest>=8.3.4"]
build = ["setuptools>=75.8.0"]