-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.38 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
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "evdev"
version = "2.0.0"
description = "Bindings to the Linux input handling subsystem"
keywords = ["evdev", "input", "uinput"]
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.11"
authors = [
{ name="Georgi Valkov", email="georgi.t.valkov@gmail.com" },
]
maintainers = [
{ name="Tobi", email="proxima@sezanzeb.de" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
"Homepage" = "https://github.com/gvalkov/python-evdev"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = ["E265", "E241", "F403", "F401", "E401", "E731"]
[tool.pylint.'MESSAGES CONTROL']
disable = """
no-member,
"""
[tool.pylint.typecheck]
generated-members = ["evdev.ecodes.*"]
ignored-modules= ["evdev._*"]
[dependency-groups]
dev = [
"build>=1.5.0",
"cibuildwheel>=2.23.4",
"furo>=2025.12.19",
"pytest>=9.1.1",
"ruff>=0.16.4",
"setuptools>=82.0.1",
"sphinx>=9.0.4",
"sphinx-autobuild>=2025.8.25",
"sphinx-autodoc-typehints>=2.3.0",
"sphinx-copybutton>=0.5.2",
"twine>=7.0.0",
]