greendeck/pyproject.toml

29 lines
564 B
TOML
Raw Normal View History

2022-12-13 14:25:50 -06:00
[tool.poetry]
name = "greendeck"
version = "0.1.0"
description = ""
authors = ["Jeffrey C. Ollie <jeff@ocjtech.us>"]
[tool.poetry.dependencies]
2024-11-07 21:33:35 -06:00
python = "^3.12"
2023-08-29 15:42:03 -05:00
pydantic = "<2"
2022-12-13 14:25:50 -06:00
hyperlink = "^21.0.0"
2024-11-07 20:50:15 -06:00
websockets = "^13.1"
Pillow = "^11.0.0"
Wand = "^0.6.13"
aiohttp = "^3.10.10"
2023-08-29 15:42:03 -05:00
pydantic-yaml = "<2"
xdg = "^6.0.0"
2024-11-07 20:50:15 -06:00
aiopath = "^0.7.7"
arrow = "^1.3.0"
2023-08-29 15:42:03 -05:00
click = "^8.1.7"
2024-11-07 20:50:15 -06:00
asyncdbus = "^0.7.0"
2022-12-13 14:25:50 -06:00
[tool.poetry.scripts]
greendeck = "greendeck.main:main"
2023-01-02 16:25:54 -06:00
test = "greendeck.mpristest:main"
2022-12-13 14:25:50 -06:00
[build-system]
2023-08-29 21:25:39 -05:00
requires = ["poetry-core"]
2022-12-13 14:25:50 -06:00
build-backend = "poetry.core.masonry.api"