-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (52 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
55 lines (52 loc) · 1.58 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "synctoolbox"
version = "1.4.2"
description = "Python Package for Efficient, Robust, and Accurate Music Synchronization (Sync Toolbox)"
readme = "README.md"
requires-python = ">=3.10, <3.15.0"
license = {text = "MIT"}
authors = [
{name = "Meinard Müller", email = "meinard.mueller@audiolabs-erlangen.de"},
{name = "Yigitcan Özer"},
{name = "Michael Krause"},
{name = "Thomas Prätzlich"},
{name = "Jonathan Driedger"}
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Programming Language :: Python :: 3",
]
dependencies = [
"librosa >= 0.11.0, < 1.0.0",
"matplotlib >= 3.10.0, < 4.0.0",
"music21 >= 9.9.0, < 10.0.0",
"numba >= 0.63.0, < 0.66.0",
"numpy >= 2.0.0, < 2.5.0",
"pandas >= 2.3.0, < 3.0.0",
"pretty_midi >= 0.2.11, < 1.0.0",
"soundfile >= 0.13.0, < 1.0.0",
"scipy >= 1.15.0, < 2.0.0"
]
[project.optional-dependencies]
develop = [
"flit >= 3.12.0",
"ipython >= 8.10.0",
"jupyter",
"nbstripout"
]
test = ["pytest >= 8.3.0, < 9.0.0"]
doc = [
"sphinx == 4.0.*",
"sphinx_rtd_theme == 0.5.*"
]
[project.urls]
Homepage = "https://github.com/meinardmueller/synctoolbox"
Repository = "https://github.com/meinardmueller/synctoolbox"
Download = "https://github.com/meinardmueller/synctoolbox"
Documentation = "https://meinardmueller.github.io/synctoolbox/build/html/index.html"