-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 764 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 764 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "volctl"
description = "Per-application volume control for GNU/Linux desktops"
authors = [
{name = "buzz", email = "buzz@users.noreply.github.com"}
]
readme = "README.md"
license = "GPL-3.0-or-later"
dynamic = ["version"]
dependencies = [
"pulsectl",
"pycairo",
"PyGObject",
]
urls = { Homepage = "https://buzz.github.io/volctl/" }
[project.gui-scripts]
volctl = "volctl.__main__:main"
[tool.setuptools.packages.find]
include = ["volctl*"]
[tool.setuptools.data-files]
"share/applications" = ["data/volctl.desktop"]
"share/glib-2.0/schemas" = ["data/apps.volctl.gschema.xml"]
[tool.setuptools.dynamic]
version = { attr = "volctl.meta.VERSION" }