-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 841 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 841 Bytes
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
[project]
name = "libf0"
version = "1.1.1"
description = "A Python Library for Fundamental Frequency Estimation in Music Recordings"
authors = [
{ name = "Sebastian Rosenzweig", email="sebastian.rosenzweig@audiolabs-erlangen.de" },
{ name = "Simon Schwär" },
{ name = "Peter Meier" },
{ name = "Meinard Müller", email="meinard.mueller@audiolabs-erlangen.de" },
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"numpy>=2.2",
"numba>=0.63",
"scipy>=1.15",
"librosa>=0.11"
]
[dependency-groups]
dev = [
"jupyter>=1.1",
"matplotlib>=3.10",
"nbstripout>=0.8"
]
tests = [
"pytest>=9.0",
"flake8>=7.3"
]
docs = [
"sphinx>=8.0",
"sphinx-rtd-theme>=3.0"
]
[build-system]
requires = ["poetry-core>=2.0,<3.0"]
build-backend = "poetry.core.masonry.api"