-
Notifications
You must be signed in to change notification settings - Fork 171
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "BirdNET-Analyzer"
version = "1.5.1"
license = { text = "MIT" }
description = "BirdNET analyzer for scientific audio data processing and bird classification."
authors = [{ name = "Stefan Kahl" }]
maintainers = [{ name = "Josef Haupt" }, { name = "Max Mauermann" }]
keywords = ["birdnet", "birdnet-analyzer"]
readme = "README.md"
requires-python = ">=3.11"
dependencies = ["librosa", "resampy", "tensorflow==2.15.0"]
[project.optional-dependencies]
train = ["tqdm", "keras-tuner"]
server = ["bottle", "requests"]
gui = ["gradio==5.16.1", "pywebview", "matplotlib", "plotly"]
embeddings = ["perch-hoplite"]
all = ["tqdm", "keras-tuner", "bottle", "requests", "gradio==5.16.1", "pywebview", "matplotlib", "plotly", "perch-hoplite"]
[project.scripts]
birdnet-analyze = "birdnet_analyzer.analyze.__init__:main"
birdnet-embeddings = "birdnet_analyzer.embeddings.__init__:main"
birdnet-search = "birdnet_analyzer.search.__init__:main"
birdnet-train = "birdnet_analyzer.train.__init__:main"
birdnet-segments = "birdnet_analyzer.segments.__init__:main"
birdnet-species = "birdnet_analyzer.species.__init__:main"
[project.gui-scripts]
birdnet-gui = "birdnet_analyzer.gui.__init__:main"
[project.urls]
Homepage = "https://birdnet.cornell.edu/birdnet"
Documentation = "https://kahst.github.io/BirdNET-Analyzer/"
Repository = "https://github.com/kahst/BirdNET-Analyzer"
Issues = "https://github.com/kahst/BirdNET-Analyzer/issues"
Download = "https://github.com/kahst/BirdNET-Analyzer/releases/latest"
[tool.setuptools]
packages = [
"birdnet_analyzer",
"birdnet_analyzer.analyze",
"birdnet_analyzer.gui",
"birdnet_analyzer.embeddings",
"birdnet_analyzer.search",
"birdnet_analyzer.species",
"birdnet_analyzer.segments",
"birdnet_analyzer.train",
]
[tool.setuptools.package-data]
birdnet_analyzer = [
"eBird_taxonomy_codes_2021E.json",
"checkpoints/**/*",
"lang/*",
"labels/**/*",
"gui/assets/**/*",
]