-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 741 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 741 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
[project]
name = "my-hotkeys-config"
version = "1.0.1"
description = "Advanced keyboard and mouse controller with hotkey support"
requires-python = ">=3.14"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"keyboard>=0.13.5",
"pynput>=1.8.1",
]
[project.optional-dependencies]
dev = [
"black>=25.1.0",
"flake8>=7.1.0",
"mypy>=1.15.0",
"isort>=5.13.2",
]
[project.urls]
Repository = "https://github.com/script-logic/keyboard-mouse-controller"
[build-system]
requires = ["uv_build>=0.10.8,<=0.11.1"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"ruff>=0.15.13",
"ty>=0.0.37",
]