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]
|
|
|
|
python = "^3.10"
|
|
|
|
pydantic = "^1.10.2"
|
|
|
|
hyperlink = "^21.0.0"
|
|
|
|
websockets = "^10.4"
|
|
|
|
Pillow = "^9.3.0"
|
|
|
|
Wand = "^0.6.7"
|
|
|
|
aiohttp = "^3.8.3"
|
|
|
|
pydantic-yaml = {extras = ["ruamel"], version = "^0.8.1"}
|
|
|
|
xdg = "^5.1.1"
|
|
|
|
aiopath = "^0.6.11"
|
|
|
|
arrow = "^1.2.3"
|
|
|
|
click = "^8.1.3"
|
2022-12-24 11:10:51 -06:00
|
|
|
asyncdbus = "^0.6.1"
|
2023-01-02 16:25:54 -06:00
|
|
|
outcome = "^1.2.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
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
pylint = "^2.15.8"
|
|
|
|
pydocstringformatter = "^0.7.2"
|
|
|
|
pydocstyle = {extras = ["toml"], version = "^6.1.1"}
|
|
|
|
black = "^22.12.0"
|
|
|
|
flake8 = "^6.0.0"
|
|
|
|
flake8-pyproject = "^1.2.2"
|
|
|
|
isort = "^5.11.1"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
line_length = 88
|
|
|
|
force_single_line = true
|
|
|
|
force_sort_within_sections = true
|
|
|
|
from_first = false
|
|
|
|
|
|
|
|
[tool.flake8]
|
|
|
|
max-line-length = 88
|
|
|
|
extend-ignore = "E203"
|