greendeck/pyproject.toml

50 lines
926 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]
2023-08-30 22:07:52 -05:00
python = "^3.10"
2023-08-29 15:42:03 -05:00
pydantic = "<2"
2022-12-13 14:25:50 -06:00
hyperlink = "^21.0.0"
2023-08-29 15:42:03 -05:00
websockets = "^11.0.3"
Pillow = "^10.0.0"
Wand = "^0.6.11"
aiohttp = "^3.8.5"
pydantic-yaml = "<2"
xdg = "^6.0.0"
2022-12-13 14:25:50 -06:00
aiopath = "^0.6.11"
arrow = "^1.2.3"
2023-08-29 15:42:03 -05:00
click = "^8.1.7"
2022-12-24 11:10:51 -06:00
asyncdbus = "^0.6.1"
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]
2023-08-29 15:42:03 -05:00
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"
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"
[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"