19 lines
398 B
TOML
19 lines
398 B
TOML
[project]
|
|
name = "tcdump"
|
|
version = "0.0.1"
|
|
description = "Wrapper around whisper for transcribing data from a dictation device"
|
|
authors = [
|
|
{name = "Elf M. Sternberg", email = "elf.sternberg@gmail.com"},
|
|
]
|
|
dependencies = [
|
|
"whisper>=1.1.10",
|
|
]
|
|
requires-python = ">=3.7"
|
|
license = {text = "MIT"}
|
|
|
|
[build-system]
|
|
requires = ["pdm-pep517>=1.0.0"]
|
|
build-backend = "pdm.pep517.api"
|
|
|
|
[tool.pdm]
|