Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.2.2 to 8.3.1. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.2.2...8.3.1) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[tool.poetry]
|
|
name = "sagemcom_api"
|
|
version = "1.0.8"
|
|
description = "Python client to interact with SagemCom F@st routers via internal API's."
|
|
authors = ["Mick Vleeshouwer <mick@imick.nl>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/iMicknl/python-sagemcom-api"
|
|
repository = "https://github.com/iMicknl/python-sagemcom-api"
|
|
keywords = ["sagemcom", "f@st"]
|
|
|
|
packages = [
|
|
{ include = "sagemcom_api" }
|
|
]
|
|
|
|
[tool.poetry.urls]
|
|
"Bug Tracker" = "https://github.com/iMicknl/python-sagemcom-api/issues"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.9,<4.0"
|
|
aiohttp = "^3.7.3"
|
|
pyhumps = "^3.0.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^8.3"
|
|
pre-commit = "^3.7.1"
|
|
black = "^24.4"
|
|
pylint = "^3.2.6"
|
|
isort = "^5.10.1"
|
|
mypy = "^1.11"
|
|
flake8 = "^4.0.1"
|
|
pyupgrade = "^3.15.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.isort]
|
|
# https://github.com/PyCQA/isort/wiki/isort-Settings
|
|
profile = "black"
|
|
force_sort_within_sections = true
|
|
combine_as_imports = true
|