-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
76 lines (69 loc) · 1.73 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
[tool.poetry]
name = "fasttrackpy"
version = "0.4.8"
description = "A python implementation of FastTrack"
authors = [
"JoFrhwld <JoFrhwld@gmail.com>",
"santiagobarreda <sbarreda@ucdavis.edu>"
]
license = "MIT"
readme = "README.md"
packages = [{include = "fasttrackpy", from="src"}]
exclude = [
"notebooks/",
"examples/",
"docs/"
]
homepage = "https://fasttrackiverse.github.io/fasttrackpy/"
repository = "https://github.com/FastTrackiverse/fasttrackpy"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
praat-parselmouth = "^0.4.3"
scipy = {version = "^1.11.3", python = ">=3.10,<3.13"}
numpy = {version = "^1.26.1", python = ">=3.10,<3.13"}
polars = "^0.20.18"
pytest-cov = "^4.1.0"
pytest = "^7.4.3"
python-magic = {version = "^0.4.27", markers = "sys_platform != 'win32'"}
python-magic-bin = {version = "^0.4.14", markers = "sys_platform == 'win32'"}
click = "^8.1.7"
cloup = "^3.0.3"
matplotlib = "^3.8.2"
aligned-textgrid = "^0.6.7"
tqdm = "^4.66.1"
joblib = "^1.3.2"
pyyaml = "^6.0.1"
cloudpickle = "^3.0.0"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
pytest = "^7.4.3"
plotly = "^5.18.0"
pandas = "^2.1.2"
ipython = "^8.17.2"
kaleido = "0.2.1"
pillow = "^10.2.0"
[tool.poetry.group.docs.dependencies]
quartodoc = "^0.6.5"
nbformat = "^5.9.2"
jupyter = "^1.0.0"
ipython = "^8.18.0"
hvplot = "^0.9.2"
pyarrow = "^15.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--cov-config=tests/.coveragerc",
"--cov-report=xml",
"--cov",
"--log-cli-level=INFO"
]
filterwarnings =[
"ignore::UserWarning"
]
pythonpath = "src"
testpaths = "tests"
[tool.poetry.scripts]
fasttrack = 'fasttrackpy.cli:fasttrack'