chore: project setup with dependencies and entry-point
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
[project]
|
||||
name = "whisper-local"
|
||||
version = "0.1.0"
|
||||
requires-python = ">=3.13"
|
||||
dependencies = [
|
||||
"faster-whisper>=1.1.0",
|
||||
"sounddevice>=0.5.0",
|
||||
"evdev>=1.7.0",
|
||||
"numpy>=2.0.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
whisper-local = "whisper_local.__main__:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"pytest>=8.0.0",
|
||||
"pytest-asyncio>=0.24.0",
|
||||
]
|
||||
Reference in New Issue
Block a user