-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
79 lines (72 loc) · 2.44 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
75
76
77
78
79
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zignal"
dynamic = ["version"]
authors = [
{name = "Ronny Andersson", email = "ronny@andersson.tk"},
]
description = "Audio signal processing library"
readme = "README.md"
license = {text = "MIT License"}
requires-python = ">=3.8"
dependencies = [
"matplotlib",
"numpy",
"scipy",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Editors",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
keywords = [
"audio", "sound", "digital", "signal", "processing", "DSP", "signalprocessing",
"fourier", "FFT", "filter", "filtering", "FIR", "IIR", "CIC", "cascaded",
"integrator", "comb", "decimation", "decimator", "parametric", "eq",
"equaliser", "equalizer", "biquad", "cookbook", "sine", "generator", "mls",
"mlssa", "maximum", "length", "sequence", "maximumlengthsequence",
"pseudo", "random", "pseudorandom", "measure", "measurement", "finite",
"infinite", "impulse", "response", "impulseresponse", "frequency",
"frequencyresponse", "magnitude", "magnituderesponse", "piano", "midi",
"tuning", "scale", "pitch", "notation", "equal", "temperament", "12TET",
"spn",
]
[project.optional-dependencies]
dev = [
"flake8",
"isort[colors]",
]
[project.scripts]
zignal-combine = "zignal._cmdline_tools.combine:main"
zignal-normalise = "zignal._cmdline_tools.normalise:main"
[project.urls]
Homepage = "https://github.com/ronnyandersson/zignal"
Issues = "https://github.com/ronnyandersson/zignal/issues"
Download = "https://pypi.python.org/pypi/zignal"
[tool.hatch.version]
path = "src/zignal/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"*.code-workspace",
]
[tool.hatch.build.targets.wheel]
exclude = [
"src/examples/",
"src/tests/",
]