-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (75 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (75 loc) · 1.97 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
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "audio-dsp"
version = "0.1.9"
description = "Python audio DSP library for synthesis, effects, and sequencing"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [
{name = "Dominique Grys"}
]
keywords = ["audio", "dsp", "synthesis", "effects", "music", "signal-processing"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=1.20.0",
"scipy>=1.7.0",
"soundfile>=0.10.0",
]
[project.optional-dependencies]
full = [
"librosa>=0.9.0",
"mido>=1.2.0",
"matplotlib>=3.0.0",
"pydub>=0.25.0",
"simpleaudio>=1.0.0",
"scikit-learn>=1.0.0",
"opencv-python>=4.0.0",
"Pillow>=8.0.0",
"noise>=1.2.0",
"sympy>=1.9.0",
]
synth = [
"soundfile>=0.10.0",
]
midi = [
"mido>=1.2.0",
]
ml = [
"scikit-learn>=1.0.0",
"umap-learn>=0.5.0",
]
viz = [
"matplotlib>=3.0.0",
]
audio = [
"librosa>=0.9.0",
"pydub>=0.25.0",
"simpleaudio>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/Metallicode/python_audio_dsp"
Repository = "https://github.com/Metallicode/python_audio_dsp"
Issues = "https://github.com/Metallicode/python_audio_dsp/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["audio_dsp*"]
[tool.setuptools.package-data]
"audio_dsp" = ["**/*.wav", "**/*.mid"]