-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (22 loc) · 611 Bytes
/
Copy pathpyproject.toml
File metadata and controls
26 lines (22 loc) · 611 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "keyboard-center"
description = "Application for mapping macro keys on Logitech keyboards"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.12"
dependencies = [
"lupa>=1.14.1",
"PyQt5>=5.15",
"python-uinput>=1.0.1",
"pyusb>=1.0.2"
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "keyboard_center.config.constants.VERSION"}
[tool.setuptools.packages.find]
include = ["keyboard_center*"]
[project.gui-scripts]
keyboard-center = "keyboard_center:main"