-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (53 loc) · 1.13 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "audalign"
version = "1.3.0"
description = "Audio Alignment and Recognition in Python"
requires-python = ">= 3.8"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Ben Miller", email = "[email protected]" },
]
maintainers = [
{ name = "Ben Miller", email = "[email protected]" },
]
keywords = [
"align",
"alignment",
"audio",
"fingerprinting",
"music",
"python",
]
dependencies = [
"matplotlib==3.8.2",
"numpy==1.26.4",
"pydub==0.25.1",
"scipy==1.12.0",
"setuptools==59.6.0",
"tqdm==4.66.2",
]
[project.optional-dependencies]
noisereduce = [
"noisereduce==2.0.1",
"torch==2.2.0",
]
visrecognize = [
"Pillow==10.2.0",
"scikit-image==0.19.3",
]
test = [
"pytest==8.0.0",
"pytest-xdist==3.1.0",
]
[project.urls]
Homepage = "http://github.com/benfmiller/audalign"
Documentation = "https://github.com/benfmiller/audalign/wiki"
Changelog = "https://github.com/benfmiller/audalign/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.sdist]
include = [
"/audalign",
]