unhacs/pyproject.toml

32 lines
662 B
TOML
Raw 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-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-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"
2024-10-04 16:18:45 +00:00
isort = "^5.13.2"
2024-06-07 23:31:02 +00:00
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"