forked from Nachtzuster/BirdNET-Pi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (78 loc) · 1.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "birdnet-pi"
version = "1.0.0"
description = "Bird sound identification system for Raspberry Pi"
readme = "README.md"
license = {text = "GPL-3.0"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy",
"librosa",
"pytz",
"tzlocal",
"requests",
"pillow",
"soundfile",
"inotify",
"watchdog",
"apprise>=1.9.0",
"paho-mqtt!=2.0",
]
[project.optional-dependencies]
# FastAPI service for Go backend integration
service = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"pydantic>=2.0.0",
]
# Full install including visualization and web dashboard
full = [
"tensorflow",
"pandas",
"seaborn",
"matplotlib",
"streamlit>=1.44.0",
"plotly",
"pyarrow>=20.0.0",
"suntime>=1.3.0",
"sklearn",
]
# Development and testing
dev = [
"pytest>=7.1.0",
"pytest-cov",
"httpx", # Required for FastAPI TestClient
]
# All optional dependencies
all = [
"birdnet-pi[service,full,dev]",
]
[project.urls]
Homepage = "https://github.com/Nachtzuster/BirdNET-Pi"
Repository = "https://github.com/Nachtzuster/BirdNET-Pi"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
birdnet = ["py.typed"]
service = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v"