forked from GrandMoff100/HomeAssistantAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.32 KB
/
pyproject.toml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "Home Assistant API"
version = "2.4.1"
description = "Python Wrapper for Homeassistant's REST API"
authors = ["GrandMoff100 <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/GrandMoff100/HomeAssistantAPI"
repository = "https://github.com/GrandMoff100/HomeAssistantAPI"
documentation = "https://homeassistantapi.readthedocs.io"
packages = [
{ include = "homeassistant_api" },
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.26.0"
simplejson = "^3.17.6"
pydantic = "^1.9.0"
requests-cache = "^0.9.2"
aiohttp-client-cache = "^0.6.1"
aiohttp = "^3.8.1"
[tool.poetry.dev-dependencies]
mypy = {git = "https://github.com/python/mypy"}
flake8 = "^4.0.1"
isort = "^5.10.1"
black = "^21.12b0"
pytest = "^6.2.5"
types-docutils = "^0.17.5"
types-requests = "^2.27.9"
types-simplejson = "^3.17.3"
pylint = "^2.12.2"
sphinx-rtd-theme = "^1.0.0"
toml = "^0.10.2"
types-toml = "^0.10.4"
sphinx-autodoc-typehints = "^1.17.0"
pre-commit = "^2.17.0"
[tool.isort]
profile = "black"
[tool.pylint.messages_control]
disable = [
"invalid-name",
"duplicate-code",
"no-member"
]
[tool.pylint.master]
extension-pkg-whitelist = ["pydantic"]
[tool.bandit]
skips = ["B105"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"