-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 1.27 KB
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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "logimap"
version = "0.2.4"
description = "Per-application profile manager for the Logitech MX Keypad on Linux"
readme = "README.md"
requires-python = ">=3.10"
authors = [{name = "Abishek Muthian", email = "me@abishekmuthian.com"}]
license = {text = "MIT"}
keywords = ["logitech", "mx-keypad", "kde", "plasma", "wayland", "keypad"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Desktop Environment :: K Desktop Environment (KDE)",
"Topic :: System :: Hardware :: Hardware Drivers",
]
dependencies = [
"Pillow>=10.0",
"dbus-next>=0.2.3",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
]
[project.urls]
Homepage = "https://github.com/abishekmuthian/logimap"
Issues = "https://github.com/abishekmuthian/logimap/issues"
Source = "https://github.com/abishekmuthian/logimap"
[project.scripts]
logimap = "logimap.__main__:main"
[tool.setuptools.packages.find]
include = ["logimap*"]