-
Notifications
You must be signed in to change notification settings - Fork 112
/
pyproject.toml
51 lines (43 loc) · 1.2 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "evdev"
version = "1.7.1"
description = "Bindings to the Linux input handling subsystem"
keywords = ["evdev", "input", "uinput"]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
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.setuptools]
packages = ["evdev"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = ["E265", "E241", "F403", "F401", "E401", "E731"]
[tool.bumpversion]
current_version = "1.7.1"
commit = true
tag = true
allow_dirty = true
[[tool.bumpversion.files]]
filename = "pyproject.toml"
[[tool.bumpversion.files]]
filename = "docs/conf.py"