Initial prototype

Basic UI outline with keyboard control. Python database
object is exposed to QML and data can be queried from its methods.
This should provide a generic structure that different UI themes
can be built around.
This commit is contained in:
2022-08-15 17:50:09 +00:00
commit 7944e4e21b
14 changed files with 1309 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
[tool.poetry]
name = "ikinuki-client"
version = "0.1.0"
description = "A example of using python-mpv with QML and PyQt5"
authors = ["restitux <restitux@ohea.xyz>"]
license = "GPLv3"
[tool.poetry.dependencies]
python = "^3.10"
python-mpv = "^0.5.2"
PyQt5 = "^5.15.1"
[tool.poetry.scripts]
ikinuki-client = 'ikinuki_client.__main__:main'
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"