-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
36 lines (32 loc) · 954 Bytes
/
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
[project]
name = "kebihelp"
version = "0.1.2"
authors = [
{ name="Julien Pro", email="[email protected]"}
]
description = "A Linux universal keybindings helper written in Python/QT5"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"prettytable>=3.10.0",
"PyQt5>=5.15.10",
"PyQt5_sip>=12.13.0"
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Operating System",
"Topic :: System :: Systems Administration",
"Topic :: Desktop Environment"
]
[project.urls]
Homepage = "https://github.com/juienpro/kebihelp"
Issues = "https://github.com/juienpro/kebihelp/issues"
[project.scripts]
kebihelp = "kebihelp.main:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"