19 lines
370 B
TOML
19 lines
370 B
TOML
[project]
|
|
name = "simplewhispr"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"openai>=2.41.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["main", "auto"]
|
|
|
|
[project.scripts]
|
|
simplewhispr-auto = "auto:auto_toggle"
|