20 lines
375 B
TOML
20 lines
375 B
TOML
|
[tool.poetry]
|
||
|
name = "pttplz"
|
||
|
version = "0.1.0"
|
||
|
description = "Push to talk"
|
||
|
authors = ["Martin Benonisen <m.s.benonisen@usit.uio.no>"]
|
||
|
readme = "README.md"
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.11"
|
||
|
typer = "^0.9.0"
|
||
|
pynput = "^1.7.6"
|
||
|
|
||
|
[tool.poetry.scripts]
|
||
|
pttplz = "pttplz.pttplz:app"
|
||
|
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|