Files
rehearshalhub/worker/pyproject.toml
Mistral Vibe 411414b9c1 Fixing build
2026-04-10 10:23:32 +02:00

54 lines
1.1 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rehearsalhub-worker"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"sqlalchemy[asyncio]>=2.0",
"asyncpg>=0.29",
"pydantic-settings>=2.3",
"redis[hiredis]>=5.0",
"httpx>=0.27",
"pydub>=0.25",
"pyloudnorm>=0.1",
"librosa>=0.10",
"numpy>=1.26",
"scipy>=1.13",
# essentia installed via system in Dockerfile (not via pip)
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-asyncio>=0.23",
"pytest-cov>=5",
"ruff>=0.4",
]
[tool.hatch.build.targets.wheel]
packages = ["src/worker"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
src = ["src"]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = ["F401", "F841", "SIM102", "SIM211", "UP045", "E501", "UP017"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["F401", "F841", "SIM102", "SIM211", "UP017", "I001", "B017", "SIM117"]
[dependency-groups]
dev = [
"ruff>=0.15.8",
]