-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
93 lines (87 loc) · 2.38 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "vocalpy"
authors = [
{name = "David Nicholson", email = "[email protected]"}
]
description = "A core package for acoustic communication research in Python"
version = "0.9.5"
classifiers = [
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython'
]
requires-python = ">=3.10"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"attrs >=23.1.0",
"crowsetta >=5.0.3",
"dask[dataframe] >=2.10.1",
"h5netcdf >= 1.3.0",
"librosa >= 0.10.2.post1",
"matplotlib >=3.7.1",
"numpy >=1.24.0",
"pandas >= 1.4.0",
"pooch >= 1.8.1",
"scipy >=1.9.0",
"SoundFile >=0.12.1",
"xarray >= 2023.11.0",
]
[project.urls]
Home = "https://github.com/vocalpy/vocalpy"
Docs = "https://vocalpy.readthedocs.io"
[project.optional-dependencies]
test = [
"pytest >=6.2.5",
"pytest-cov >=2.11.1",
"pytest-xdist >=3.2.0",
]
doc = [
"ipython != 8.7.0",
"jupyterlab >=3.0.3",
"jupytext >=1.13.8",
"myst-nb >=0.15.0",
"numpydoc >=1.6.0",
"seaborn >=0.13.2",
"Sphinx >=3.4.3",
"sphinx-autobuild >= 2021.3.14",
"sphinx-book-theme >=0.3.2",
"sphinx-copybutton >=0.4.0",
"sphinx-design >=0.2.0",
"sphinxext-opengraph >=0.5.1",
"sphinx-tabs >= 3.3.1",
]
dev = [
"twine >=3.7.1",
"black >=21.12b0",
"ipython >=8.0.0",
"nox >= 2022.1.7",
"vocalpy[doc, test]"
]
[tool.pytest.ini_options]
filterwarnings = [
'ignore:Deprecated call to `pkg_resources.declare_namespace:DeprecationWarning:pkg_resources',
'ignore:pkg_resources is deprecated as an API:DeprecationWarning:',
'ignore:\nPyarrow will become a required dependency::',
'ignore:use `parametric:DeprecationWarning:multimethod',
'ignore:base implementation will eventually ignore',
'ignore:The current Dask DataFrame'
]
[tool.flit.sdist]
exclude = [
"tests/data-for-tests"
]
[tool.coverage.run]
omit = [
"src/scripts/",
"tests/scripts/",
"noxfile.py",
]