-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
29 lines (24 loc) · 1.11 KB
/
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
[build-system]
requires = ["setuptools >= 61"]
build-backend = "setuptools.build_meta"
[project]
name = "boxi"
description = "A terminal emulator for use with Toolbox"
authors = [{name = "Allison Karlitskaya", email = "[email protected]"}]
license = {file = "COPYING"}
readme = "README.md"
classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "boxi.__version__"}
[tool.setuptools.data-files]
"share/applications" = ["data/share/applications/dev.boxi.Boxi.desktop"]
"share/dbus-1/services" = ["data/share/dbus-1/services/dev.boxi.Boxi.service"]
"share/glib-2.0/schemas" = ["data/share/glib-2.0/schemas/dev.boxi.gschema.xml"]
"share/icons/hicolor/scalable/apps" = ["data/share/icons/hicolor/scalable/apps/dev.boxi.Boxi.svg"]
"share/icons/hicolor/symbolic/apps" = ["data/share/icons/hicolor/symbolic/apps/dev.boxi.Boxi-symbolic.svg"]
"share/metainfo" = ["data/share/metainfo/dev.boxi.Boxi.metainfo.xml"]
[project.urls]
Home = "https://github.com/allisonkarlitskaya/boxi/"
[project.scripts]
boxi = "boxi.app:main"