-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.19 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
[tool.poetry]
name = "fave-recode"
version = "0.3.0"
description = "A package for recoding Praat TextGrids"
authors = ["JoFrhwld <[email protected]>"]
license = "GPLv3"
readme = "README.md"
packages = [{include = "fave_recode", from="src"}]
exclude = [
".github/",
"docs/",
"doc_src/"
]
homepage = "https://forced-alignment-and-vowel-extraction.github.io/fave-recode"
repository = "https://github.com/Forced-Alignment-and-Vowel-Extraction/fave-recode"
[tool.poetry.dependencies]
python = "^3.10"
aligned-textgrid = "^0.6.4"
pyyaml = "^6.0"
cerberus = "^1.3.5"
click = "^8.1.7"
cloup = "^3.0.2"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
pytest = "^7.2.1"
pytest-cov = "^4.1.0"
importlib = "^1.0.4"
pre-commit = "^3.5.0"
[tool.poetry.group.docs.dependencies]
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",
"--cov-report=xml:cov.xml"
]
filterwarnings =[
"ignore::UserWarning"
]
pythonpath = "src"
testpaths = "tests"
[tool.poetry.scripts]
fave_recode = 'fave_recode.fave_recode:fave_recode'