-
Notifications
You must be signed in to change notification settings - Fork 117
/
pyproject.toml
63 lines (59 loc) · 1.84 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
[build-system]
requires = [
"setuptools>=42",
"cmake>=3.18",
"scikit-build>=0.13",
]
build-backend = "setuptools.build_meta"
[project]
name = "praat-parselmouth"
# version = <see setup.py>
description = "Praat in Python, the Pythonic way"
license = { text = "GNU General Public License v3 or later (GPLv3+)" }
authors = [
{ name = "Yannick Jadoul", email = "[email protected]" },
]
readme = "res/README_PyPI.md"
requires-python = ">=3.8"
keywords = ["praat", "speech", "signal processing", "phonetics"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"numpy>=1.7.0"
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/YannickJadoul/Parselmouth"
"Bug Tracker" = "https://github.com/YannickJadoul/Parselmouth/issues"
"Documentation" = "https://parselmouth.readthedocs.io/"
"Source Code" = "https://github.com/YannickJadoul/Parselmouth"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests"
]
[tool.check-manifest]
ignore = [
".clang-format",
".pre-commit-config.yaml",
".readthedocs.yml",
"binder",
"binder/*"
]