-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (52 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
55 lines (52 loc) · 1.25 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
[project]
name = "aligned_textgrid"
packages = [{include = "aligned_textgrid", from="src"}]
version = "0.8.2a1"
description = "Classes for defining sequential information from TextGrids"
authors = [
{name="Josef Fruehwald", email = "JoFrhwld@gmail.com>"},
{name="chrisbrickhouse", email = "brickhouse@stanford.edu"}
]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://forced-alignment-and-vowel-extraction.github.io/alignedTextGrid/"
repository = "https://github.com/Forced-Alignment-and-Vowel-Extraction/alignedTextGrid"
requires-python = ">=3.10"
dependencies = [
"cloudpickle>=3.1.2",
"numpy>=2.2.6",
"polars>=1.39.3",
"praatio>=6.2.2",
"toml>=0.10.2",
]
[build-system]
requires = ["uv_build>=0.10.0,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"jupyter>=1.1.1",
]
docs = [
"jupyter>=1.1.1",
"quartodoc>=0.11.1",
"textgrid>=1.6.1",
]
test = [
"codecov>=2.1.13",
"importlib>=1.0.4",
"pytest>=9.0.2",
"pytest-cov>=7.1.0",
"pytest-html>=4.2.0",
]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--cov-config=.coveragerc",
"--cov-report=xml",
"--cov"
]
filterwarnings =[
"ignore::UserWarning"
]
pythonpath = "src"
testpaths = "tests"