forked from google-research/perch-hoplite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.76 KB
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
[tool.poetry]
name = "perch-hoplite"
version = "0.1.0"
description = "Tooling for agile modeling on large machine perception embedding databases."
authors = ["Perch Team <chirp-bio@google.com>"]
license = "Apache 2.0"
[project]
# Project metadata. Available keys are documented at:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata
name = "perch-hoplite"
description = "Tooling for agile modeling on large machine perception embedding databases."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "tom denton", email="tomdenton@google.com"},
{name = "Vincent Dumoulin", email="vdumoulin@google.com"},
{name = "Jeninka Hamer", email="hamer@google.com"},
{name = "Bart van Merriënboer", email="bartvm@google.com"},
{name = "Frank Zhang", email="zhangfrank@google.com"},
]
[tool.poetry.dependencies]
# These dependencies are part of the implicit 'main' group, meaning
# they will be installed when using `pip install`.
python = ">=3.10"
absl-py = ">=1.4.0,<1.5.0"
etils = {extras = ["epath"], version = ">=1.5.0,<1.6.0"}
imageio = ">=2.5.0,<2.6.0"
ipywidgets = ">=8.1,<9"
librosa = ">=0.10.1,<0.11.0"
matplotlib = ">=3.6.1,<3.7.0"
ml-collections = ">=1.0.0,<2.0.0"
notebook = ">=7.0.4,<7.1.0"
numpy = ">=1.24.0"
pandas = {extras = ["gcp"], version = ">=2.1.1,<3.0.0"}
usearch = ">=2.16,<2.18"
# Optional dependencies for extras
tensorflow = {version = "^2.16", optional = true}
tensorflow-hub = {version = "^0.16.0", optional = true}
flax = {version = "^0.8.1", optional = true}
jax = {version = "^0.4.16", optional = true}
[tool.poetry.extras]
tf = ["tensorflow", "tensorflow-hub"]
jax = ["flax", "jax"]
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"