-
Notifications
You must be signed in to change notification settings - Fork 115
/
setup.cfg
67 lines (59 loc) · 1.6 KB
/
setup.cfg
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
60
61
62
63
64
65
66
67
[tool:pytest]
addopts = --cov-report term-missing --cov mir_eval --cov-report=xml --mpl --mpl-baseline-path=baseline_images/test_display
[coverage:report]
show_missing = True
[coverage:run]
omit =
separation.py
[pydocstyle]
# convention = numpy
# Below is equivalent to numpy convention + D400 and D205
ignore = D107,D203,D205,D212,D213,D400,D402,D413,D415,D416,D417
[flake8]
count = True
statistics = True
show_source = True
select =
E9,
F63,
F7,
F82
[metadata]
name = mir_eval
version = attr: mir_eval.__version__
description = Common metrics for common audio/music processing tasks.
author = Colin Raffel
author_email = [email protected]
url = https://github.com/mir-evaluation/mir_eval
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
license = MIT
python_requires = ">=3.7"
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Multimedia :: Sound/Audio :: Analysis
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
packages = find:
keywords = audio music mir dsp
install_requires =
numpy >= 1.15.4
scipy >= 1.4.0
decorator
[options.extras_require]
display =
matplotlib >= 3.3.0
tests =
matplotlib >= 3.3.0
pytest
pytest-cov
pytest-mpl