-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (50 loc) · 1.3 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
[tool.poetry]
name = "aligned_textgrid"
version = "0.7.6"
description = "Classes for defining sequential information from TextGrids"
authors = ["JoFrhwld <[email protected]>", "chrisbrickhouse <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
packages = [{include = "aligned_textgrid", from="src"}]
exclude = [
"notebooks/",
"examples/",
"docs/"
]
homepage = "https://forced-alignment-and-vowel-extraction.github.io/alignedTextGrid/"
repository = "https://github.com/Forced-Alignment-and-Vowel-Extraction/alignedTextGrid"
[tool.poetry.dependencies]
python = "^3.10"
praatio = "^6.0.0"
numpy = "^1.24.2"
polars = "^0.20.18"
cloudpickle = "^3.0.0"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.1"
importlib = "^1.0.4"
pytest-cov = "^4.0.0"
pytest-html = "^3.2.0"
flake8 = "^6.1.0"
codecov = "^2.1.13"
[tool.poetry.group.docs.dependencies]
textgrid = "^1.5"
quartodoc = "0.6.5"
jupyter = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--cov-config=.coveragerc",
"--cov-report=xml",
"--cov"
]
filterwarnings =[
"ignore::UserWarning"
]
pythonpath = "src"
testpaths = "tests"