50 lines
945 B
TOML
50 lines
945 B
TOML
[tool.poetry]
|
|
name = "greendeck"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Jeffrey C. Ollie <jeff@ocjtech.us>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
pydantic = "<2"
|
|
hyperlink = "^21.0.0"
|
|
websockets = "^13.1"
|
|
Pillow = "^11.0.0"
|
|
Wand = "^0.6.13"
|
|
aiohttp = "^3.10.10"
|
|
pydantic-yaml = "<2"
|
|
xdg = "^6.0.0"
|
|
aiopath = "^0.7.7"
|
|
arrow = "^1.3.0"
|
|
click = "^8.1.7"
|
|
asyncdbus = "^0.7.0"
|
|
|
|
[tool.poetry.scripts]
|
|
greendeck = "greendeck.main:main"
|
|
test = "greendeck.mpristest:main"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pylint = "^2.17.5"
|
|
pydocstyle = "^6.3.0"
|
|
black = "^23.7.0"
|
|
flake8 = "^6.1.0"
|
|
flake8-pyproject = "^1.2.3"
|
|
isort = "^5.12.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line_length = 120
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 120
|
|
force_single_line = true
|
|
force_sort_within_sections = true
|
|
from_first = false
|
|
|
|
[tool.flake8]
|
|
max-line-length = 120
|
|
extend-ignore = "E203"
|