-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (80 loc) · 2.54 KB
/
pyproject.toml
File metadata and controls
86 lines (80 loc) · 2.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "linebrew"
version = "1.0.0"
description = "A modern interface for Homebrew on Linux"
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
authors = [
{ name = "Torcken 🤍" },
]
keywords = ["homebrew", "gtk", "linux", "package-manager", "gui"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Software Distribution",
]
requires-python = ">=3.11"
dependencies = [
"PyGObject>=3.44",
]
[project.urls]
Homepage = "https://github.com/Torcken/linebrew"
"Bug Tracker" = "https://github.com/Torcken/linebrew/issues"
[project.scripts]
linebrew = "linebrew.application:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["linebrew*"]
[tool.setuptools.package-data]
linebrew = [
"style.css",
]
[tool.setuptools.data-files]
"share/applications" = [
"data/io.github.linebrew.Linebrew.desktop",
]
"share/metainfo" = [
"data/io.github.linebrew.Linebrew.metainfo.xml",
]
"share/icons/hicolor/16x16/apps" = [
"data/icons/hicolor/16x16/apps/io.github.linebrew.Linebrew.png",
]
"share/icons/hicolor/22x22/apps" = [
"data/icons/hicolor/22x22/apps/io.github.linebrew.Linebrew.png",
]
"share/icons/hicolor/24x24/apps" = [
"data/icons/hicolor/24x24/apps/io.github.linebrew.Linebrew.png",
]
"share/icons/hicolor/32x32/apps" = [
"data/icons/hicolor/32x32/apps/io.github.linebrew.Linebrew.png",
]
"share/icons/hicolor/48x48/apps" = [
"data/icons/hicolor/48x48/apps/io.github.linebrew.Linebrew.png",
]
"share/icons/hicolor/64x64/apps" = [
"data/icons/hicolor/64x64/apps/io.github.linebrew.Linebrew.png",
]
"share/icons/hicolor/96x96/apps" = [
"data/icons/hicolor/96x96/apps/io.github.linebrew.Linebrew.png",
]
"share/icons/hicolor/128x128/apps" = [
"data/icons/hicolor/128x128/apps/io.github.linebrew.Linebrew.png",
]
"share/icons/hicolor/256x256/apps" = [
"data/icons/hicolor/256x256/apps/io.github.linebrew.Linebrew.png",
]
"share/icons/hicolor/512x512/apps" = [
"data/icons/hicolor/512x512/apps/io.github.linebrew.Linebrew.png",
]
"share/icons/hicolor/1024x1024/apps" = [
"data/icons/hicolor/1024x1024/apps/io.github.linebrew.Linebrew.png",
]