-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (59 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
61 lines (59 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
[project]
# Project metadata. Available keys are documented at:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata
name = "perch-hoplite"
version = "1.0.0"
description = "Tooling for agile modeling on large machine perception embedding databases."
readme = "README.md"
requires-python = ">=3.10,<3.15"
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"},
{name = "Ștefan Istrate", email="istefan@google.com"},
]
maintainers = [
{name = "Perch Team", email="chirp-bio@google.com"},
]
dependencies = [
"absl-py>=1.4.0,<2.0.0",
"etils[epath]>=1.5.0,<2.0.0",
"imageio>=2.5.0,<3.0.0",
"ipywidgets>=8.1,<9.0",
"kagglehub>=0.3,<0.4",
"librosa>=0.11,<0.12",
"matplotlib>=3.6.1,<4.0.0",
"ml-collections>=0.1.1,<0.2.0",
"notebook>=7.4,<8.0",
"numpy>=2.0,<3.0",
"pandas[gcp]>=2.1.1,<3.0.0",
"scipy>=1.8.0,<2.0",
"tensorflow>=2.20,<3.0",
"usearch>=2.17,<3.0",
]
[project.optional-dependencies]
jax = [
"flax>=0.10,<0.11",
"jax>=0.6,<0.7",
]
tf = [
"tensorflow>=2.20,<3.0",
]
tf-cuda = [
"tensorflow[cuda]>=2.20,<3.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = [
"agile",
"db",
"taxonomy",
"zoo",
"audio_io.py",
"path_utils.py",
]