forked from pywemo/pywemo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.24 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
59
60
61
62
63
64
65
[tool.poetry]
name = "pywemo"
version = "0.5.6"
description = "Lightweight Python module to discover and control WeMo devices"
authors = ["Greg Dowling <[email protected]>"]
license = "MIT"
readme = 'README.rst'
repository = "https://github.com/pavoni/pywemo"
homepage = "https://github.com/pavoni/pywemo"
keywords = ['wemo', 'api']
[tool.poetry.dependencies]
python = "^3.7"
ifaddr = ">=0.1.0"
requests = ">=2.0"
lxml = "^4.6"
[tool.poetry.dev-dependencies]
flake8-docstrings = ">=1.3.0"
flake8 = ">=3.6.0"
mypy = ">=0.650"
pydocstyle = "3.0.0"
pylint = "2.6.0"
pytest = "5.2.1"
black = "20.8b1"
isort = "^5.6.4"
generateDS = "2.37.11"
rstcheck = "^3.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
skip-string-normalization = true
target-version = ['py37', 'py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \venv
| _build
| buck-out
| build
| dist
)/
| pywemo/ouimeaux_device/api/xsd
)
'''
[tool.isort]
profile = "black"
line_length = 79
src_paths = ["pywemo", "tests"]
skip_glob = "*/xsd/*"