-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.63 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
58
59
[build-system]
requires = ["setuptools>=75.6", "Cython==3.0.8", "numpy>=1.26.3,<2.0", "build", "cibuildwheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pymatchmaker"
version = "0.1.3"
description = "A package for real-time music alignment"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache 2.0" }
keywords = ["music", "alignment", "midi", "audio"]
authors = [
{ name = "Matchmaker Development Team", email = "[email protected]" },
]
urls = { Homepage = "https://github.com/pymatchmaker/matchmaker" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Cython",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"cython>=3.0.8",
"python-rtmidi>=1.5.8",
"mido>=1.3.2",
"numpy>=1.26.3,<2.0",
"scipy>=1.11.4,<1.15",
"librosa>=0.10.1",
"partitura>=1.5.0",
"progressbar2>=4.2.0",
"python-hiddenmarkov>=0.1.3",
"pyaudio>=0.2.14",
"pyfluidsynth>=1.3.3",
]
[project.optional-dependencies]
dev = [
"black>=23.12.1",
"isort>=5.13.2",
"pre-commit>=3.6.0",
"ipython>=8.12.0",
"pyclean>=3.0.0",
"ruff>=0.8.2",
]
[tool.setuptools.packages.find]
exclude = ["tests", "docs"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = ["F403", "E722", "F401", "F841"]