22 lines
731 B
TOML
22 lines
731 B
TOML
|
[build-system]
|
||
|
requires = ["hatchling"]
|
||
|
build-backend = "hatchling.build"
|
||
|
|
||
|
[project]
|
||
|
name = "notescriber"
|
||
|
version = "0.0.1"
|
||
|
authors = [
|
||
|
{ name="Tomasz Frątczak", email="accidentallycompetent@octopusx.de" },
|
||
|
]
|
||
|
description = "Watches a directory for new files, then triggers OpenAI whisper transcription service to convert voice notes into text notes in NextCloud."
|
||
|
readme = "README.md"
|
||
|
requires-python = ">=3.8"
|
||
|
classifiers = [
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: MIT License",
|
||
|
"Operating System :: OS Independent",
|
||
|
]
|
||
|
|
||
|
[project.urls]
|
||
|
Homepage = "https://teapot.octopusx.de/accidentallycompetent/notescriber"
|
||
|
Issues = "https://teapot.octopusx.de/accidentallycompetent/notescriber/issues"
|