-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
72 lines (66 loc) · 1.88 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
68
69
70
71
[bumpversion]
current_version = 1.0.3
commit = True
tag = True
[metadata]
name = realbook
version = attr: realbook.__version__
description = Realbook, a library to make using audio on TensorFlow easier.
long_description = Realbook, a library to make using audio on TensorFlow easier.
author = Spotify
author_email = realbook@spotify.com
maintainer = Spotify
maintainer_email = realbook@spotify.com
url = https://github.com/spotify/realbook
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.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
[options]
zip_safe = False
packages = find:
include_package_data = True
# Note we don't yet support TensorFlow 2.16 or later due to Keras 3,
# which does not support complex datatypes.
install_requires =
tensorflow>=2.4,<2.16; sys_platform != 'darwin' or platform.machine != 'arm64'
# TF 2.13 finally publishes ARM wheels:
tensorflow>=2.13,<2.16; sys_platform == 'darwin' and platform.machine == 'arm64'
types-protobuf
numpy
typing_extensions
[options.extras_require]
dev =
realbook[tensorboard,test]
bumpversion>=0.5.3
tensorboard =
matplotlib
psutil
nvsmi
librosa>=0.9
test =
coverage>=5.0.2
pytest>=7.1.1
pytest-cov>=4.0.0
pytest-mock>=3.10.0
tox
torch
nnaudio
numpy>=1.22
librosa>=0.9
tensorflow>=2.4,<2.16; sys_platform != 'darwin' or platform.machine != 'arm64'
# TF 2.13 finally publishes ARM wheels:
tensorflow>=2.13,<2.16; sys_platform == 'darwin' and platform.machine == 'arm64'
[bumpversion:file:realbook/__init__.py]
[bdist_wheel]
universal = 1