added dockerfile and pyproject.toml

This commit is contained in:
2024-12-30 19:13:35 +01:00
parent b3c30398c2
commit ac1509c215
23 changed files with 142 additions and 99 deletions
+21
View File
@@ -0,0 +1,21 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "annescribe"
version = "0.1.0"
authors = [
{ name = "Alex Blank", email = "alexblank@fastmail.com" }
]
description = "A tool for transcribing audio files with whisper in a webapp"
readme = "README.md"
requires-python = "==3.10.16"
dependencies = [
"torch>=2.3",
"openai-whisper>=20240927",
"streamlit==1.41.1",
"streamlit-authenticator==0.4.1",
"streamlit-autorefresh==1.0.1",
"pydub==0.25.1"
]