2024-06-04 22:28:47 +00:00
|
|
|
[build-system]
|
2024-06-07 23:31:02 +00:00
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2024-06-04 22:28:47 +00:00
|
|
|
|
2024-06-07 23:31:02 +00:00
|
|
|
[tool.poetry]
|
2024-06-04 22:28:47 +00:00
|
|
|
name = "unhacs"
|
2024-09-18 18:37:26 +00:00
|
|
|
version = "0.7.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-04 22:28:47 +00:00
|
|
|
|
2024-06-07 23:31:02 +00:00
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.11"
|
2024-09-18 18:33:27 +00:00
|
|
|
requests = "^2.32.0"
|
|
|
|
pyyaml = "^6.0.0"
|
2024-06-04 22:28:47 +00:00
|
|
|
|
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"
|
2024-09-18 18:33:27 +00:00
|
|
|
types-requests = "^2.32.0"
|
|
|
|
types-pyyaml = "^6.0.0"
|
2024-06-07 23:31:02 +00:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2024-06-04 22:28:47 +00:00
|
|
|
unhacs = 'unhacs.main:main'
|
2024-06-07 23:46:09 +00:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
force_single_line = true
|
|
|
|
profile = "black"
|