forked from iMicknl/python-sagemcom-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "sagemcom_api"
version = "1.0.5"
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.7,<4.0"
aiohttp = "^3.7.3"
pyhumps = ">=1.6.1,<4.0.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pre-commit = "^2.15.0"
black = "^21.8b0"
pylint = "^2.10.2"
isort = "^5.9.3"
mypy = "^0.910"
flake8 = "^3.9.2"
pyupgrade = "^2.26.0"
[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