-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
31 lines (28 loc) · 873 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "rtcqs"
version = "0.6.3"
description = "Linux audio performance analyzer"
readme = {file = "README.rst", content-type = "text/x-rst"}
authors = [{ name = "Jeremy Jongepier", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Topic :: Utilities",
"Topic :: System :: Installation/Setup",
]
keywords = ["real-time", "priorities", "audio", "limits"]
dependencies = [
"PySimpleGUI == 4.60.5",
]
requires-python = ">=3.6"
[project.urls]
Homepage = "https://codeberg.org/rtcqs/rtcqs"
[project.scripts]
rtcqs = "rtcqs.rtcqs:main"
rtcqs_gui = "rtcqs.rtcqs_gui:main"