-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
59 lines (49 loc) · 1.38 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "wavefile"
version = "1.6.3"
description = "Pythonic wave file reader and writer"
authors = [
{ name="David García Garzón", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.8"
license = { file="LICENSE"}
keywords = ["audio", "wavefile", "libsndfile"]
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Multimedia',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
]
dependencies = [
'numpy',
]
[project.optional-dependencies]
test = [
'pytest',
'pytest-cov',
]
examples = [
'PyAudio',
]
[project.urls]
Homepage = "https://github.com/vokimon/python-wavefile"
Documentation = "https://readthedocs.org"
Repository = "https://github.com/vokimon/python-wavefile"
Changelog = "https://github.com/vokimon/python-wavefile/blob/master/CHANGELOG.md"
[tool.setuptools.packages]
find = {}
[tool.coverage.run]
relative_files = true
branch = true
omit = ["**/*test.py"]
[tool.pytest.ini_options]
addopts = "--cov=wavefile"