-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 996 Bytes
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
[project]
name = "WayKey"
version = "0.1.0"
readme = "README.md"
description = "Wayland automation"
requires-python = ">=3.13"
authors = [
{ name = "Nmstr", email = "publicNamester@gmail.com" }
]
keywords = ["wayland", "automation", "input"]
classifiers = [
"Topic :: Utilities",
"Topic :: Other/Nonlisted Topic",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
]
dependencies = [
"evdev>=1.9.2",
"screeninfo>=0.8.1",
]
[project.urls]
Source = "https://github.com/Nmstr/WayKey"
Issues = "https://github.com/Nmstr/WayKey/issues"
[build-system]
requires = ["uv_build>=0.7.20,<0.8.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""
module-name = "WayKey"
source-exclude = [
"daemon",
"cli"
]
[dependency-groups]
dev = [
"mkdocs-material>=9.6.18",
]