-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
62 lines (55 loc) · 1.44 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
[pycodestyle]
max-line-length=119
[tool:pytest]
addopts = --cov-report term-missing --cov pumpp --cov-report=xml
xfail_strict = true
filterwarnings =
ignore:Using a non-tuple sequence:FutureWarning:scipy.*
[coverage:report]
omit =
*/python?.?/*
*/site-packages/nose/*
pumpp/labels.py
[metadata]
name = pumpp
version = attr: pumpp.version.version
description = A practically universal music pre-processor
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/bmcfee/pumpp
author = Brian McFee
license = ISC
license_file = LICENSE.md
license_file_content_type = text/markdown; charset=UTF-8
project_urls =
Source = https://github.com/bmcfee/pumpp
Download = https://github.com/bmcfee/pumpp/releases
classifiers =
License :: OSI Approved :: ISC License (ISCL)
Programming Language :: Python
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find:
install_requires =
librosa >= 0.8.0
jams >= 0.3
scikit-learn >= 1.0
mir_eval >= 0.5
python_requires = >= 3.6
[options.extras_require]
docs =
numpydoc
sphinx
tests =
pytest
pytest-cov
keras >= 2.6
tensorflow >= 2.0
keras =
keras >= 2.6