-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (71 loc) · 1.74 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
[build-system]
requires = ["setuptools>=82", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vocalpy"
version = "0.1.0"
description = "Vocal analysis framework for detecting and classifying animal vocalizations."
readme = "README.md"
requires-python = ">=3.12,<3.13"
license = { text = "Apache-2.0" }
authors = [
{ name = "Gustavo Madeira Santana" },
]
dependencies = [
"joblib>=1.5,<2",
"matplotlib>=3.10,<4",
"numpy>=2.4,<3",
"opencv-python-headless>=4.13,<5",
"pandas>=2.3,<3",
"Pillow>=12,<13",
"PyYAML>=6,<7",
"scikit-image>=0.26,<1",
"scipy>=1.17,<2",
"seaborn>=0.13,<1",
"soundfile>=0.13,<1",
"torch>=2.11,<2.12",
"torchvision>=0.26,<0.27",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
dev = [
"pytest>=9,<10",
"pytest-cov>=7,<8",
]
docs = [
"furo>=2025.12,<2026",
"myst-parser>=4,<5",
"sphinx>=8,<9",
]
notebooks = [
"jupyterlab>=4.5.7,<5",
"notebook>=7.5.6,<8",
]
[project.scripts]
vocalpy = "vocalpy.cli:main"
vocalpy-models = "vocalpy.model_cli:main"
[project.urls]
Homepage = "https://vocalpy.gumadeiras.com"
Repository = "https://github.com/gumadeiras/vocalpy"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["vocalpy*"]
[tool.setuptools.package-data]
vocalpy = [
"configs/*.yml",
"nn/pretrained/*.json",
"nn/pretrained/*.ckpt",
"nn/pretrained/*.pth.tar",
]
[tool.pytest.ini_options]
testpaths = ["vocalpy/tests"]