forked from asuni/wavelet_prosody_toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
92 lines (83 loc) · 2.16 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61",
]
[project]
name = "wavelet_prosody_toolkit"
version = "1.0"
authors = [
{name="Antti Suni", email="antti.suni@helsinki.fi"},
{name="Sébastien Le Maguer", email="sebastien.lemaguer@helsinki.fi"}
]
description = "Prosody wavelet analysis toolkit"
readme = {file="README.rst", content-type="text/x-rst"}
classifiers = [
'Development Status :: 4 - Beta',
# Audience
'Intended Audience :: Science/Research',
# Topics
'Topic :: Multimedia :: Sound/Audio :: Speech',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Visualization',
# Pick your license as you wish
'License :: OSI Approved :: MIT License',
# Python version (FIXME: fix the list of python version based on travis results)
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
dependencies = [
"pyyaml",
"pycwt",
"numpy",
"scipy",
"soundfile",
"tgt",
"wavio",
"joblib"
]
[project.optional-dependencies]
gui = ["pyqt5", "matplotlib"]
reaper = ["pyreaper"]
docs = ["sphinx", "sphinx_rtd_theme", "numpydoc"]
full = [
"pyqt5",
"matplotlib",
"pyreaper",
"sphinx",
"sphinx_rtd_theme",
"numpydoc"
]
dev = ["pre-commit"]
[project.scripts]
prosody_labeller = "wavelet_prosody_toolkit.prosody_labeller:main"
cwt_analysis_synthesis = "wavelet_prosody_toolkit.cwt_analysis_synthesis:main"
wavelet_gui = "wavelet_prosody_toolkit.wavelet_gui:main"
[project.urls]
Homepage = "https://github.com/asuni/wavelet_prosody_toolkit"
Issues = "https://github.com/asuni/wavelet_prosody_toolkit/issues"
git = "https://github.com/asuni/wavelet_prosody_toolkit.git"
[tool.setuptools]
packages = ["wavelet_prosody_toolkit"]
[tool.black]
line-length = 120
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
/(
\.toml
|\.sh
|\.git
|\.ini
|Dockerfile
|Jenkinfile
)/
'''
[tool.flake8]
max-line-length = 120
[tool.basedpyright]
typeCheckingMode = "standard"