forked from google-research/perch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 1.06 KB
/
pyproject.toml
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
[tool.poetry]
name = "chirp"
version = "0.1.0"
description = "A bioacoustics research project."
authors = ["Chirp Team <chirp-bio@google.com>"]
license = "Apache 2.0"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
absl-py = "^1.3.0"
apache-beam = {version = "^2.46.0", extras = ["gcp"]}
clu = "^0.0.8"
flax = "^0.6.7"
jax = "^0.4.12"
ml-collections = "^0.1.1"
optax = "^0.1.4"
# Note that tensorflow and tensorflow-io versions must be synchronized.
# See: https://github.com/tensorflow/io#tensorflow-version-compatibility
tensorflow = "=2.11.0"
tensorflow-io = "=0.31"
tensorflow-datasets = {version = "^4.8.0", extras = ["dev"]}
pandas = {version = "2.0.2", extras=["gcp"]}
etils = {version = "^0.9.0", extras = ["epath"]}
ratelimiter = "^1.2.0.post0"
SPARQLWrapper = "^2.0.0"
scenic = {git = "https://github.com/google-research/scenic.git"}
tensorflow-hub = "^0.12.0"
imageio = "^2.5.0"
matplotlib = "^3.6.1"
[tool.poetry.group.dev.dependencies]
librosa = "^0.9.2"
numpy = "^1.22.4"
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"