-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 1015 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mpteval"
version = "0.1.3"
requires-python = ">=3.9"
dependencies = [
"numpy==1.26.4",
"scipy==1.12.0",
"partitura==1.5.0", # tmp, wait for partitura release 1.6.0
"matplotlib==3.7.0",
"fastdtw==0.3.4"
]
description = "Musically informed piano transcription metrics"
readme = "README.md"
authors = [
{ name="Patricia Hu", email="[email protected]"},
{ name="Lukáš Samuel Marták" },
{ name="Carlos Cancino-Chacón" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools]
packages = { find = { exclude = ["tests"] } }
include-package-data = true
[tool.setuptools.package-data]
"mpteval" = ["assets/*"]
[project.urls]
Homepage = "https://github.com/CPJKU/mpteval"
Issues = "https://github.com/CPJKU/mpteval/issues"