blatted/pyproject.toml

27 lines
501 B
TOML
Raw Normal View History

2023-05-09 18:40:58 +02:00
[tool.poetry]
name = "blatted"
version = "0.1.0"
description = ""
authors = ["jpk <jpk@goatpr0n.de>"]
readme = "README.md"
[tool.poetry.dependencies]
2023-05-13 13:31:49 +02:00
python = "^3.10"
2023-05-09 18:40:58 +02:00
bleak = "^0.20.2"
click = "^8.1.3"
rich = "^13.3.5"
textual = "^0.25.0"
python-dispatch = "^0.2.1"
2023-05-09 18:40:58 +02:00
2023-05-13 13:31:49 +02:00
[tool.poetry.scripts]
blatted = "blatted.cli:main"
2023-05-09 18:40:58 +02:00
2023-05-09 22:24:22 +02:00
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.1"
icecream = "^2.1.3"
hexdump = "^3.3"
2023-05-09 18:40:58 +02:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"