-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (53 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
56 lines (53 loc) · 1.6 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
56
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "synctoolbox"
version = "1.4.1"
description = "Python Package for Efficient, Robust, and Accurate Music Synchronization (Sync Toolbox)"
readme = "README.md"
requires-python = ">=3.10, <3.13.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.10.0, < 1.0.0",
"matplotlib >= 3.1.0, < 4.0.0",
"music21 >= 9.1.0, < 10.0.0",
"numba >= 0.58.1, < 0.60.0",
"numpy >= 1.17.0, < 2.0.0",
"pandas >= 2.1.0, < 3.0.0",
"pretty_midi >= 0.2.0, < 1.0.0",
"soundfile >= 0.9.0, < 1.0.0",
"scipy >= 1.7.0, < 2.0.0",
"libfmp >= 1.2.0, < 2.0.0"
]
[project.optional-dependencies]
develop = [
"flit >= 3.10.0",
"ipython >= 8.10.0",
"jupyter",
"nbstripout"
]
test = ["pytest == 6.2.*"]
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"