-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (39 loc) · 1.1 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
[metadata]
name = audiotree
version = attr: audiotree.__version__
url = https://github.com/DBraun/audiotree
author = David Braun
author_email = [email protected]
description = Audio data loading and augmentations in JAX
long_description = file: README.md
long_description_content_type = "text/markdown"
classifiers =
Intended Audience :: Developers
Natural Language :: English
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Multimedia :: Sound/Audio
Topic :: Software Development :: Libraries
[options]
package_dir =
= src
packages = find:
python_requires = >=3.10
install_requires =
chex>=0.1.86
; dm_aux @ git+https://github.com/DBraun/dm_aux.git@DBraun-patch-1
einops
flax>=0.8.2
grain==0.2.*
; jaxloudnorm @ git+https://github.com/DBraun/jaxloudnorm.git@feature/speed-optimize
librosa>=0.10.1
numpy
soundfile
typing_extensions
[options.packages.find]
where = src
[options.extras_require]
dev =
pytest
pytest-cov