unhacs/pyproject.toml

29 lines
611 B
TOML
Raw Permalink Normal View History

[build-system]
2024-06-07 23:31:02 +00:00
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2024-06-07 23:31:02 +00:00
[tool.poetry]
name = "unhacs"
2024-06-20 22:28:48 +00:00
version = "0.3.0"
2024-06-07 23:31:02 +00:00
description = "Command line interface to install Home Assistant Community Store packages"
authors = ["Ian Fijolek <ian@iamthefij.com>"]
license = "MIT"
readme = "README.md"
2024-06-07 23:31:02 +00:00
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.32.3"
2024-06-07 23:31:02 +00:00
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
mypy = "^1.10.0"
pre-commit = "^3.7.1"
types-requests = "^2.32.0.20240602"
[tool.poetry.scripts]
unhacs = 'unhacs.main:main'
2024-06-07 23:46:09 +00:00
[tool.isort]
force_single_line = true
profile = "black"