You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
526 B
27 lines
526 B
[build-system] |
|
requires = ["setuptools>=75"] |
|
build-backend = "setuptools.build_meta" |
|
|
|
[project] |
|
name = "voice-transcriptor" |
|
version = "0.1.0" |
|
description = "Windows desktop media transcription client" |
|
requires-python = ">=3.12" |
|
dependencies = [ |
|
"openai>=1.0", |
|
"PySide6>=6.7", |
|
"keyring>=25.0", |
|
] |
|
|
|
[project.scripts] |
|
voice-transcriptor = "voice_transcriptor.app:main" |
|
|
|
[tool.setuptools.packages.find] |
|
where = ["src"] |
|
|
|
[tool.pytest.ini_options] |
|
addopts = "-ra" |
|
testpaths = ["tests"] |
|
pythonpath = ["src"] |
|
qt_api = "pyside6" |
|
|
|
|