-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.02 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "beat-this"
version = "1.1.0"
description = "Beat This! beat tracker"
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
]
authors = [
{name = "Francesco Foscarin", email = "francesco.foscarin@jku.at"},
{name = "Jan Schlüter", email = "jan.schlueter@jku.at"},
]
requires-python = ">=3"
dependencies = [
"numpy>=1.20",
"torch>=2",
"torchaudio",
"einops",
"rotary-embedding-torch",
"soxr",
]
license = "MIT"
license-files = ["LICENSE"]
[tool.setuptools.package-dir]
beat_this = "beat_this"
[project.urls]
Repository = "https://github.com/CPJKU/beat_this"
Issues = "https://github.com/CPJKU/beat_this/issues"
Changelog = "https://github.com/CPJKU/beat_this/blob/main/CHANGELOG.md"
[project.scripts]
beat_this = "beat_this.cli:main"