-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (63 loc) · 1.81 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "multideck-audio-player"
dynamic = ["version"]
description = "Accessible cross-platform audio player for simultaneous playback of multiple audio sources"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [
{ name = "Steffen Schultz", email = "steffenschultz@mailbox.org" },
]
keywords = [
"accessibility",
"audio",
"mixer",
"player",
"screenreader",
"streaming",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Topic :: Multimedia :: Sound/Audio :: Players",
]
dependencies = [
"configparser>=6.0.0",
"numpy>=1.24.0",
"pedalboard==0.9.23",
"prismatoid>=0.15.0",
"sounddevice>=0.4.6",
"soundfile>=0.12.1",
"wxPython>=4.2.0",
"m45wxcontrols" = { git = "https://github.com/schulle4u/m45wxcontrols", rev = "v0.3.0" }
]
[project.optional-dependencies]
build = [
"pyinstaller>=6.0.0",
"markdown>=3.0.0",
]
[project.scripts]
multideck-cli = "main:cli"
[project.gui-scripts]
multideck-gui = "main:main"
[project.urls]
"Bug Reports" = "https://github.com/schulle4u/multideck/issues"
Homepage = "https://m45.dev"
Source = "https://github.com/schulle4u/multideck"
[tool.hatch.build.targets.wheel]
packages = ["src"]