greendeck/pyproject.toml
2023-03-28 09:01:43 -05:00

52 lines
1 KiB
TOML

[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"
asyncdbus = "^0.6.1"
outcome = "^1.2.0"
[tool.poetry.scripts]
greendeck = "greendeck.main:main"
test = "greendeck.mpristest:main"
[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.5.1"]
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"