-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
74 lines (63 loc) · 1.53 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
version = "1.6.1"
name = "maelzel"
description = "Framework for computer music and composition"
authors = [
{ name = "Eduardo Moguillansky", email = "eduardo.moguillansky@gmail.com" },
]
license = { file = "LICENSE.md" }
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
'Topic :: Multimedia :: Sound/Audio',
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"appdirs",
"tabulate",
"cachetools",
"pyyaml",
"psutil",
"lxml",
"quicktions",
"rich",
"chardet",
"simple-term-menu",
"visvalingamwyatt",
"distro",
"thefuzz",
# "resampy", # Do not include it by default, since this pulls numba
"python-constraint",
"pillow",
"sounddevice",
"typing_extensions",
# Own libraries
"emlib>=1.16.5",
"ctcsound7>=0.4.6",
"bpf4>=1.10.0",
"configdict>=2.10",
"sndfileio>=1.9.1",
"numpyx>=1.3.1",
"csoundengine>=2.12.0",
"pitchtools>=1.14.0",
"risset>=2.8.0",
"loristrck>=1.6.1",
"vamphost>=1.3.0",
"lilyponddist>=1.0.1",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["maelzel", "maelzel.*"]
exclude = ["docs", "notebooks", "test", "scripts"]
[tool.setuptools.package-data]
maelzel = ['maelzel/data']
[project.urls]
"Homepage" = "https://github.com/gesellkammer/maelzel"