forked from DAS4Whales/DAS4Whales
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (65 loc) · 1.55 KB
/
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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "das4whales"
dynamic = ["version"]
description = "Distributed acoustic sensing analysis tools for Bioacoustics"
readme = "README.md"
license.file = "LICENSE"
authors = [
{ name = "Léa Bouffaut", email = "[email protected]" },
{ name = "Quentin Goestchel", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"DateTime",
"h5py",
"nptdms",
"librosa",
"matplotlib",
"numpy",
"scipy",
"wget",
"dask[complete]",
"sparse",
"pytest",
"xarray",
"tqdm",
"torch",
"opencv-python",
"scikit-image",
"opencv-python",
"torchvision",
"numpydoc",
"pyproj",
"pandas",
"deprecation"
]
[project.urls]
Homepage = "https://github.com/DAS4Whales/DAS4Whales"
[tool.hatch.version]
path = "src/das4whales/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"src/das4whales/",
]
[project.optional-dependencies]
docs = [
"furo",
"myst_parser >=0.13",
"sphinx >=4.0",
"sphinx-copybutton",
"sphinx-autodoc-typehints",
]