forked from pyspcwebgw/pyspcwebgw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (40 loc) · 1007 Bytes
/
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
[tool.poetry]
name = "pyspcwebgw"
version = "0.7.0"
description = "A Python library for communicating with SPC Web Gateway."
authors = ["Martin Berg", "Jakob Schlyter <jakob@kirei.se>"]
license = "MIT"
readme = "README.md"
keywords=["spc", "vanderbilt", "web gateway"]
classifiers = [
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Home Automation',
]
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "^3.8.3"
[tool.poetry.group.dev.dependencies]
aioresponses = "^0.7.4"
pytest = "^7.2.0"
pytest-asyncio = "^0.20.3"
flake8 = "^6.0.0"
pylama = {version = "^8.4.1", extras=["toml"]}
flake8-pyproject = "^1.2.2"
black = "^22.12.0"
isort = "^5.12.0"
pytest-isort = "^3.1.0"
pytest-black = "^0.3.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.pytest]
testpaths = ["tests"]
[tool.pylama]
format = "pylint"
ignore = "W0611,C901"
skip = ".venv/*"
[tool.flake8]
exclude = [".venv"]