-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (43 loc) · 1.55 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
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "hoplite"
version = "0.1.0"
description = "Tooling for agile modeling on large machine perception embedding databases."
authors = ["Perch Team <[email protected]>"]
license = "Apache 2.0"
[project]
# Project metadata. Available keys are documented at:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata
name = "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="[email protected]"},
{name = "Vincent Dumoulin", email="[email protected]"},
{name = "Jeninka Hamer", email="[email protected]"},
{name = "Bart van Merriënboer", email="[email protected]"},
{name = "Frank Zhang", email="[email protected]"},
]
[tool.poetry.dependencies]
# These dependencies are part of the implicit 'main' group, meaning
# they will be installed when using `pip install`.
# Other dependency groups will not be installed by pip, however.
# See: https://python-poetry.org/docs/managing-dependencies/#dependency-groups
python = ">=3.10,<3.12"
absl-py = "^1.4.0"
ml-collections = "^0.1.1"
tensorflow = "^2.16"
etils = {version = "^1.5.0", extras = ["epath"]}
imageio = "^2.5.0"
matplotlib = "^3.6.1"
notebook = "^7.0.4"
librosa = "^0.10.1"
numpy = "^1.24.0"
usearch = "^2.15"
tensorflow-hub = "^0.16.0"
pandas = {version = "^2.1.1", extras=["gcp"]}
ipywidgets = "^8.1"
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"