-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (60 loc) · 1.38 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
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "dsptoolbox"
dynamic = ["version"]
license = "MIT"
authors = [
{ name="Nicolas Franco-Gomez" },
]
description = "Collection of dsp algorithms to be used for analysis of audio signals"
readme = "README.rst"
keywords = [
"Digital Signal Processing",
"dsp",
"Research",
"Prototyping",
]
requires-python = ">=3.10"
dependencies = [
"numba>=0.60;python_version<='3.12'",
"scipy>=1.11",
"numpy>=1.25",
"soundfile>=0.12",
"sounddevice>=0.4",
"matplotlib>=3.8",
"seaborn>=0.12",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/nico-franco-gomez/dsptoolbox"
"Bug Tracker" = "https://github.com/nico-franco-gomez/dsptoolbox/issues"
Documentation = "https://dsptoolbox.readthedocs.io/en/latest/"
[tool.hatch.envs.docs]
dependencies = [
"sphinx",
"furo",
"numydoc",
"readthedocs-sphinx-search",
"autodocsumm",
]
[tool.hatch.envs.dev]
dependencies = [
"flake8",
"twine",
"hatch",
"wheel",
]
[tool.hatch.version]
path = "dsptoolbox/__init__.py"