File: pyproject.toml

package info (click to toggle)
python-libevdev 0.13.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 420 kB
  • sloc: python: 2,739; makefile: 14
file content (46 lines) | stat: -rw-r--r-- 1,154 bytes parent folder | download
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
[project]
name = "libevdev"
version = "0.13.1"
description = "Python wrapper for libevdev"
readme = "README.md"
license = {text = "MIT"}
authors = [
    {name = "Peter Hutterer", email = "peter.hutterer@who-t.net"},
]
keywords = ["evdev", "input", "uinput", "libevdev"]
classifiers = [
    "Development Status :: 4 - Beta",
    "Topic :: Software Development",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python :: 3",
]
requires-python = ">=3.9"
dependencies = [
    "typing_extensions>=4.0; python_version<'3.11'",
]

[project.urls]
Homepage = "https://gitlab.freedesktop.org/libevdev/python-libevdev"
Documentation = "https://python-libevdev.readthedocs.io/en/latest/"
Repository = "https://gitlab.freedesktop.org/libevdev/python-libevdev"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["libevdev"]

[tool.ruff]
exclude = [".git", "__pycache__"]

[tool.pytest.ini_options]
testpaths = ["test"]
python_files = ["test_*.py"]
addopts = "-v --strict-markers"

[dependency-groups]
dev = [
    "pytest>=8.4.2",
]