-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
39 lines (36 loc) · 997 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/dev",
"/tests",
"/src/birdnetlib/models/lite"
]
[project]
name = "birdnetlib"
version = "0.18.0"
authors = [
{ name="Joe Weiss", email="[email protected]" },
]
description = "A python api for BirdNET-Lite and BirdNET-Analyzer"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"watchdog==2.1.9",
"pydub==0.25.1",
"matplotlib>=3.5.3",
"requests>=2.28.1",
]
[project.urls]
"Source code" = "https://github.com/joeweiss/birdnetlib"
"Issues" = "https://github.com/joeweiss/birdnetlib/issues"
"Documentation" = "https://joeweiss.github.io/birdnetlib/"