File size: 584 Bytes
81bcdf3 acaa496 81bcdf3 |
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 |
[project]
name = "pyannote-speaker-diarization"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Katsuya Oda", email = "[email protected]" }
]
dependencies = [
"pyannote.audio @ git+https://github.com/pyannote/[email protected]",
"torch==1.11.0",
"torchaudio==0.11.0",
"torchvision==0.12.0",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
|