-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (65 loc) · 1.51 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Z0Z_tools"
description = "Solve some common Python development frustrations"
readme = "README.md"
requires-python = ">=3.10"
version = "0.6.5"
authors = [
{ name = "Hunter Hogan", email = "[email protected]" }
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy",
"resampy",
"soundfile",
"packaging",
"pytest>=7.0",
]
[project.optional-dependencies]
testing = [
"pytest>=7.0",
"pytest-cov",
"pytest-mock",
"pandas",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
[project.urls]
homepage = "https://github.com/hunterhogan/Z0Z_tools"
repository = "https://github.com/hunterhogan/Z0Z_tools.git"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = """
--cov=Z0Z_tools
--cov-report=term-missing
--cov-report=xml:tests/coverage/coverage.xml
"""
[tool.coverage.run]
branch = true
source = ["Z0Z_tools"]
data_file = "tests/coverage/.coverage"
omit = [
"Z0Z_tools/__init__.py",
"Z0Z_tools/pytest_*.py",
"tests/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if __name__ == .__main__.:",
"raise NotImplementedError",
]
[tool.coverage.xml]
output = "tests/coverage/coverage.xml"