-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.52 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (50 loc) · 1.52 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
[build-system]
requires = ["uv_build>=0.9.5,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = "."
source-include = ["assets/**"]
[project]
name = "whalevad"
version = "0.1.6"
authors = [
{ name="Christiaan M. Geldenhuys", email="cmgeldenhuys@sun.ac.za" },
{ name="Günther Tonitz", email="gtonitz@sun.ac.za" },
]
description = "A lightweight sound event detection system for discovering Baleen whale calls in marine audio recordings"
readme = "README.md"
requires-python = ">=3.11"
license = "GPL-3.0-or-later"
license-files = ["LICEN[CS]E*"]
dependencies = [
"torch>=2.0.0",
"torchaudio>=2.0.0",
"numpy>=1.24.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"ruff",
]
examples = [
"remotezip",
]
[project.urls]
Homepage = "https://github.com/CMGeldenhuys/Whale-VAD"
Issues = "https://github.com/CMGeldenhuys/Whale-VAD/issues"
[tool.hatch.build.targets.wheel]
packages = ["whalevad"]