forked from kitzeslab/opensoundscape
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
131 lines (121 loc) · 3.28 KB
/
Copy pathpyproject.toml
File metadata and controls
131 lines (121 loc) · 3.28 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[tool.poetry]
name = "opensoundscape"
version = "0.13.0"
description = "Open source, scalable acoustic data analysis for ecology and conservation"
authors = [
"Sam Lapp <sammlapp@gmail.com>",
"Tessa Rhinehart <tessa.rhinehart@gmail.com>",
"Louis Freeland-Haynes <>",
"Jatin Khilnani <>",
"Sasha Syunkova <>",
"Leonardo Viotti <>",
"Santiago Ruiz-Guzman <>",
"Justin Kitzes <justin.kitzes@pitt.edu>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/jkitzes/opensoundscape"
packages = [{include = "opensoundscape"}]
include = ["opensoundscape/**/*.py"]
[tool.poetry.dependencies]
python = ">=3.10, !=3.11.0, <3.14"
numpy = ">2.0"
docopt = ">=0.6.2"
librosa = ">=0.11.0"
torch = ">=2.8.0"
torchaudio = ">=2.8.0"
torchvision = ">=0.15.1"
ipykernel = ">=5.2.0"
pandas = ">=1.3"
matplotlib = ">=3.9.4"
matplotlib-inline = ">=0.1.7"
schema = ">=0.7.2"
jupyterlab = ">=2.1.4"
scikit-image = ">=0.17.2"
numba = ">=0.57.0"
scikit-learn = ">=0.24.2"
ipython = ">=7.34.0"
pywavelets = ">=1.2.0"
Deprecated = "^1.2.13"
soundfile = ">=0.13.1"
wandb = ">=0.17.0"
pillow = ">=12.2.0"
jupyter-server = ">=2.11.2"
joblib = ">=1.2.0"
aru-metadata-parser = ">=1.0.0"
tqdm = ">=4.67.3"
gitpython = ">=3.1.47"
werkzeug=">=3.1.5"
noisereduce=">=3.0.2"
lightning=">=2.2.5"
scipy=">=1.15"
llvmlite=">=0.44.0"
# optional dependencies (install with `pip install opensoundscape[viz]` etc.)
ipywidgets = {version = ">=8.1.8", optional = true}
plotly = {version = ">=6.6.0", optional = true}
tensorflow = {version = "==2.20.0", optional = true}
tensorflow-hub = {version = ">=0.14.0", optional = true}
onnx = {version = ">=1.19.1", optional = true}
onnxruntime = {version = ">=1.23.2", optional = true}
onnxscript = {version = ">=0.5.4", optional = true}
keras = {version = ">=3.12.0", optional = true}
perch-hoplite = {version = ">=1.0.1", optional = true}
grad-cam = {version = ">=1.5.0", optional = true}
# security alert updates
aiohttp=">=3.13.4"
tornado=">=6.5.5"
setuptools=">=78.1.1"
urllib3=">=2.6.3"
protobuf = ">=5.29.6"
certifi = ">=2024.7.4"
requests=">=2.33.0"
h11=">=0.16.0"
Jinja2 = ">=3.1.6"
sentry-sdk = ">=2.8.0"
nbconvert = ">=7.17.1"
filelock = ">=3.20.3"
fonttools = ">=4.61.0"
lxml = ">=6.1.0"
[tool.poetry.group.dev.dependencies]
black = "~24.3"
pre-commit = ">=1.18"
sphinx = ">=7.2.6"
pytest = ">=9.0.3"
sphinx-rtd-theme = ">=1.3.0"
nbsphinx = ">=0.7.1"
m2r = ">=0.2"
docutils = ">=0.20"
sphinx-copybutton = ">=0.5.2"
crowsetta = ">=5.0.2"
wheel = ">=0.46.2"
virtualenv = ">=20.36.1"
onnx = ">=1.19.1"
onnxruntime = ">=1.23.2"
onnxscript = ">=0.5.4"
perch-hoplite = ">=1.0.1"
grad-cam = ">=1.5.0"
# security alert updates
pygments = ">=2.20.0"
[tool.poetry.extras]
tensorflow = ["tensorflow", "tensorflow-hub", "keras"]
grad-cam = ["grad-cam"]
viz = ["ipywidgets", "plotly"]
onnx = ["onnx", "onnxruntime", "onnxscript"]
hoplite = ["perch-hoplite"]
all = ["ipywidgets", "plotly", "tensorflow", "tensorflow-hub", "onnx", "onnxruntime", "onnxscript", "perch-hoplite", "grad-cam"]
[tool.black]
line-length = 88
target_version = ['py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.git
| dist
)/
'''
[tool.poetry.scripts]
opensoundscape = "opensoundscape.console:entrypoint"
build_docs = "opensoundscape.console:build_docs"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"