-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (90 loc) · 2.37 KB
/
pyproject.toml
File metadata and controls
96 lines (90 loc) · 2.37 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "vak"
description = "A neural network framework for researchers studying acoustic communication"
version = "1.1.0"
authors = [
{name = "David Nicholson", email = "[email protected]"}
]
classifiers = [
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: Implementation :: CPython'
]
requires-python = ">=3.12"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"attrs >=25.3.0",
"crowsetta >=5.1.3",
"dask[dataframe] >=2025.5.1",
"evfuncs >=0.3.4",
"joblib >=1.5.1",
"lightning >=2.2.4",
"matplotlib >=3.9.0",
"numpy >=2.0.0",
"pynndescent >=0.5.13",
"scipy >=1.12.0",
"SoundFile >=0.13.1",
"pandas >=2.2.0",
"tensorboard >=2.8.0",
"tomlkit >=0.12.4",
"torch >= 2.7.0",
"torchvision >=0.22.0",
"tqdm >=4.67.1",
"umap-learn >=0.5.9",
]
[dependency-groups]
lint = [
"black >=23.7.0",
"flake8 >=6.0.0",
"isort >=5.12.0",
"pycln >=2.1.3",
]
test = [
"pytest >=6.2.5",
"pytest-cov >=2.11.1",
]
doc = [
"furo >=2022.1.2",
"myst-parser >=0.17.0",
"sphinx >=3.4.1",
"sphinxext-opengraph >=0.5.1",
"sphinx-autobuild >=2021.3.14",
"sphinx-copybutton >=0.4.0",
"sphinx-tabs >=3.4.1",
]
dev = [
"twine >=3.3.0",
"ipython >=7.0",
{include-group = "doc"},
{include-group = "lint"},
{include-group = "test"},
]
[project.urls]
Source = "https://github.com/vocalpy/vak"
Documentation = "https://vak.readthedocs.io"
[project.scripts]
vak = 'vak.__main__:main'
[tool.flit.sdist]
exclude = [
"tests/data_for_tests"
]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
filterwarnings = [
"ignore:::torch.utils.tensorboard",
'ignore:Deprecated call to `pkg_resources.declare_namespace',
'ignore:pkg_resources is deprecated as an API',
'ignore:Implementing implicit namespace packages',
'ignore:distutils Version classes are deprecated.',
]