-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (37 loc) · 969 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
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "FadeoutToSleep"
version = "1.0"
authors = [
{ name="TekMiikka" },
]
description = "A program to fade out volume linearly and put the computer to sleep."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
"Intended Audience :: End Users/Desktop",
]
keywords = [
'sleep',
'standby',
'volume',
'GTK',
'glade',
]
requires-python = ">=3.4"
dependencies = [
'PyGObject',
'pulsectl',
'importlib-metadata; python_version < "3.8"',
]
[project.gui-scripts]
FadeoutToSleep = "fadeouttosleep.fadeouttosleep:mymain"
[project.urls]
"Homepage" = "https://github.com/tekmiikka/fadeouttosleep"
[tool.setuptools]
include-package-data = true