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
|
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "evdev"
version = "1.9.1"
description = "Bindings to the Linux input handling subsystem"
keywords = ["evdev", "input", "uinput"]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
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",
"License :: OSI Approved :: BSD License",
"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.bumpversion]
current_version = "1.9.1"
commit = true
tag = true
allow_dirty = true
[[tool.bumpversion.files]]
filename = "pyproject.toml"
[[tool.bumpversion.files]]
filename = "docs/conf.py"
[tool.pylint.'MESSAGES CONTROL']
disable = """
no-member,
"""
[tool.pylint.typecheck]
generated-members = ["evdev.ecodes.*"]
ignored-modules= ["evdev._*"]
|