forked from birdnet-team/BirdNET-Analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 956 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "birdnet"
version = "0.2.0"
authors = [
{name="Bengt Lüers", email="[email protected]" },
]
description = "BirdNET analyzer for scientific audio data processing."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/Bengt/BirdNET-Analyzer"
[tool.hatch.build]
include = [
"/birdnet/*.py",
"/birdnet/**/*.py",
"/checkpoints/V2.4/",
]
exclude = [
".github",
".idea",
"example",
"extra-hooks",
"requirements.d",
"tests",
".dockerignore",
".gitignore",
"BirdNET-Analyzer-full.spec",
"Dockerfile",
"pyinstaller_analyze.py",
"pyinstaller_full.py",
"pyinstaller_gui.py",
"/checkpoints/V2.4/*FP32.tflite",
"/checkpoints/V2.4/*INT8.tflite",
]