-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
35 lines (31 loc) · 903 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
[build-system]
requires = ["setuptools>=70.0"]
build-backend = "setuptools.build_meta"
[project]
name = "efiboots"
version = "1.0"
authors = [
{ name="Elia Argentieri", email="elia@elinvention.ovh" }
]
maintainers = [
{ name="Elia Argentieri", email="elia@elinvention.ovh" }
]
description = "Manage EFI boot loader entries with this simple GUI"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"PyGObject~=3.44.1"
]
keywords = ["gtk4", "efi", "efibootmgr"]
[project.gui-scripts]
efiboots = "efiboots"
[project.urls]
Homepage = "https://github.com/Elinvention/efiboots"
Issues = "https://github.com/Elinvention/efiboots/issues"
[tool.setuptools.data-files]
"share/applications" = ["efiboots.desktop"]