unhacs/pyproject.toml

31 lines
644 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-09-05 23:13:30 +00:00
version = "0.6.2"
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"
2024-09-18 18:33:27 +00:00
requests = "^2.32.0"
pyyaml = "^6.0.0"
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]
unhacs = 'unhacs.main:main'
2024-06-07 23:46:09 +00:00
[tool.isort]
force_single_line = true
profile = "black"