-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (43 loc) · 1.12 KB
/
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
45
46
47
48
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "gamut"
authors = [
{ name = "Felipe Tovar-Henao", email = "[email protected]" },
]
description = "Granular Audio Musaicing Toolkit for Python"
readme = "README.md"
requires-python = ">=3.7"
keywords = [
'DSP',
'audio musaicking',
'granulation',
'machine learning',
'ML',
"MIR",
'music',
'sound design',
'concatenative synthesis',
]
license = { text = "OSI Approved :: ISC License (ISCL)" }
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Other Audience',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
]
dynamic = ["version", "dependencies"]
[tool.setuptools.dynamic]
version = { attr = "gamut.__version__.__version__" }
readme = { file = ["README.md"] }
dependencies = { file = ["requirements.txt"] }
[project.scripts]
gamut = "gamut:cli"
gamut-ui = "gamut:gui"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
mypkg = ["*.mp3", "*.png", "*.kv"]