-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1017 Bytes
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1017 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
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "phasefinder"
version = "0.0.2"
authors = [
{ name="bleugreen", email="bleugreendesign@gmail.com" },
]
description = "rotational beat estimation model"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy<2.0.0",
"torch",
"pytorch-tcn",
"h5py",
"librosa",
"nnAudio",
"torchaudio",
"soundfile",
"deeprhythm",
"tqdm",
"mir_eval",
]
[project.optional-dependencies]
dev = ["pytest", "ruff"]
[project.urls]
Homepage = "https://github.com/bleugreen/phasefinder"
Issues = "https://github.com/bleugreen/phasefinder/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 120
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]