mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-22 11:13:34 +00:00
c59b748a06
* Pin dependencies on major versions, add poetry.lock * Fix linting
78 lines
1.6 KiB
TOML
78 lines
1.6 KiB
TOML
[tool.poetry]
|
|
name = "python-kasa"
|
|
version = "0.4.0.dev1"
|
|
description = "Python API for TP-Link Kasa Smarthome devices"
|
|
license = "GPL-3.0-or-later"
|
|
authors = ["Your Name <you@example.com>"]
|
|
repository = "https://github.com/python-kasa/python-kasa"
|
|
readme = "README.md"
|
|
packages = [
|
|
{ include = "kasa" }
|
|
]
|
|
|
|
[tool.poetry.scripts]
|
|
kasa = "kasa.cli:cli"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
importlib-metadata = "*"
|
|
asyncclick = "^7"
|
|
|
|
# required only for docs
|
|
sphinx = { version = "^3", optional = true }
|
|
m2r = { version = "^0", optional = true }
|
|
sphinx_rtd_theme = { version = "^0", optional = true }
|
|
sphinxcontrib-programoutput = { version = "^0", optional = true }
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^5"
|
|
pytest-azurepipelines = "^0"
|
|
pytest-cov = "^2"
|
|
pytest-asyncio = "^0"
|
|
pytest-sugar = "*"
|
|
pre-commit = "*"
|
|
voluptuous = "*"
|
|
toml = "*"
|
|
tox = "*"
|
|
pytest-mock = "^3"
|
|
codecov = "^2"
|
|
xdoctest = "^0"
|
|
|
|
[tool.poetry.extras]
|
|
docs = ["sphinx", "sphinx_rtd_theme", "m2r", "sphinxcontrib-programoutput"]
|
|
|
|
|
|
[tool.isort]
|
|
multi_line_output = 3
|
|
include_trailing_comma = true
|
|
force_grid_wrap = 0
|
|
use_parentheses = true
|
|
line_length = 88
|
|
known_first_party = "kasa"
|
|
known_third_party = ["asyncclick", "pytest", "setuptools", "voluptuous"]
|
|
|
|
[tool.coverage.run]
|
|
source = ["kasa"]
|
|
branch = true
|
|
omit = ["kasa/tests/*"]
|
|
|
|
[tool.coverage.report]
|
|
exclude_lines = [
|
|
# ignore abstract methods
|
|
"raise NotImplementedError",
|
|
"def __repr__"
|
|
]
|
|
|
|
[tool.interrogate]
|
|
ignore-init-method = true
|
|
ignore-magic = true
|
|
ignore-private = true
|
|
ignore-semiprivate = true
|
|
fail-under = 100
|
|
exclude = ['kasa/tests/*']
|
|
verbose = 2
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|