-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (23 loc) · 831 Bytes
/
pyproject.toml
File metadata and controls
28 lines (23 loc) · 831 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fluidpatcher"
version = "1.0.3"
description = "FluidSynth patch manager and performance toolkit"
readme = "docs/README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Bill Peterson", email = "bill@geekfunklabs.com" }
]
requires-python = ">=3.10"
dependencies = ["PyYAML>=6.0"]
[project.urls]
Homepage = "https://github.com/GeekFunkLabs/fluidpatcher"
Documentation = "https://geekfunklabs.github.io/fluidpatcher/"
Source = "https://github.com/GeekFunkLabs/fluidpatcher"
[project.scripts]
fpatcher-editor = "fluidpatcher.examples.live_bank_editor:main"
[tool.setuptools.package-data]
"fluidpatcher.data" = ["*.yaml", "banks/*", "midi/*.mid", "sounds/*.sf2"]
"fluidpatcher._ladspa" = ["prebuilt/*/*.so"]