forked from spotify/basic-pitch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
67 lines (60 loc) · 1.66 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
[bumpversion]
current_version = 0.3.0
commit = True
tag = True
[metadata]
name = basic-pitch
version = attr: basic_pitch.__version__
description = Basic Pitch, a lightweight yet powerful audio-to-MIDI converter with pitch bend detection.
long_description = Basic Pitch, a lightweight yet powerful audio-to-MIDI converter with pitch bend detection. See https://github.com/spotify/basic-pitch for more details.
author = Spotify
author_email = [email protected]
maintainer = Spotify
maintainer_email = [email protected]
url = https://github.com/spotify/basic-pitch
keywords =
license = Apache 2.0
classifiers =
Development Status :: 5 - Production/Stable
Natural Language :: English
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
[options]
zip_safe = False
packages = find:
include_package_data = True
install_requires =
librosa>=0.8.0
mir_eval>=0.6
numpy<1.24,>=1.18
pretty_midi>=0.2.9
resampy>=0.2.2
scipy>=1.4.1
tensorflow>=2.4.1; platform_machine != 'arm64'
tensorflow-macos>=2.4.1; platform_machine == 'arm64'
typing_extensions
[options.entry_points]
console_scripts =
basic-pitch = basic_pitch.predict:main
[options.extras_require]
test =
coverage>=5.0.2
pytest>=6.1.1
pytest-mock
docs =
mkdocs>=1.0.4
dev =
basic_pitch[test,docs]
bump2version>=1.0.1
mypy
tox
[bumpversion:file:basic_pitch/__init__.py]
[bdist_wheel]
universal = 1