make python package
This commit is contained in:
33
pyproject.toml
Normal file
33
pyproject.toml
Normal file
@@ -0,0 +1,33 @@
|
||||
[build-system]
|
||||
requires = ["setuptools >= 77.0.3"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "transcribble"
|
||||
version = "0.0.1"
|
||||
description = "A simple tool for audio transcription"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.14"
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
"Operating System :: OS Independent",
|
||||
]
|
||||
license = "MIT"
|
||||
license-files = ["LICENSE.md"]
|
||||
dependencies = [
|
||||
"numpy",
|
||||
"openai-whisper",
|
||||
"scikit-learn",
|
||||
"speechbrain",
|
||||
"torch",
|
||||
]
|
||||
|
||||
[[project.authors]]
|
||||
name = "Robert Hrusecky"
|
||||
email = "robert@jadedpasta.net"
|
||||
|
||||
[project.urls]
|
||||
Repository = "https://gitea.jadedpasta.net/jadedpasta/transcribble"
|
||||
|
||||
[project.scripts]
|
||||
transcribble = "transcribble:main"
|
||||
Reference in New Issue
Block a user