voice-lab/pyproject.toml

66 lines
1.5 KiB
TOML
Raw Permalink Normal View History

2024-11-08 21:06:31 +00:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "voice-lab"
dynamic = ["version"]
description = ''
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
keywords = []
authors = [
{ name = "Zoé Cassiopée Gauthier", email = "zoe.gauthier@blorp.dev" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"matplotlib",
"numpy",
"rich",
2024-11-08 21:06:31 +00:00
"sounddevice",
"FreeSimpleGUI"
]
[project.urls]
Source = "https://git.blorp.dev/zo/voice-lab"
[tool.hatch.version]
path = "src/voice_lab/__about__.py"
[tool.hatch.envs.types]
extra-dependencies = [
"mypy>=1.0.0",
]
[tool.hatch.envs.types.scripts]
check = "mypy --install-types --non-interactive {args:src/voice_lab tests}"
[tool.coverage.run]
source_pkgs = ["voice_lab", "tests"]
branch = true
parallel = true
omit = [
"src/voice_lab/__about__.py",
]
[tool.coverage.paths]
voice_lab = ["src/voice_lab", "*/voice-lab/src/voice_lab"]
tests = ["tests", "*/voice-lab/tests"]
[tool.coverage.report]
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]