forked from sim0nx/python-openhab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
80 lines (71 loc) · 1.82 KB
/
setup.cfg
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[bdist_wheel]
universal = 0
[metadata]
name = python-openhab
description = python library for accessing the openHAB REST API
long_description = file: README.md
long_description_content_type = text/markdown
author = Georges Toth
author_email = [email protected]
url = https://github.com/sim0nx/python-openhab
license = AGPLv3+
download_url = https://github.com/sim0nx/python-openhab
project_urls =
Bug Tracker = https://github.com/sim0nx/python-openhab/issues
Documentation = http://python-openhab.readthedocs.io/en/latest/?badge=latest
Source Code = https://github.com/sim0nx/python-openhab
classifier =
Development Status :: 4 - Beta
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
keywords =
openHAB
[options]
zip_safe = False
include_package_data = True
packages = find:
setup_requires =
setuptools_scm
python_requires = >=3.5
install_requires =
requests~=2.26
python-dateutil~=2.8
requests_oauthlib~=1.3
[options.package_data]
openhab = py.typed
[options.extras_require]
docs =
mkdocs-material
mkdocstrings
dev =
pylint
mypy
flake8
flake8-bandit
flake8-comprehensions
flake8-docstrings
types-python-dateutil
types-requests
test =
pytest
coverage
beautifulsoup4
[flake8]
max-line-length = 240
docstring-convention = google
ignore = D401, E111, E114
[mypy]
show_error_context = True
show_column_numbers = True
ignore_missing_imports = True
disallow_incomplete_defs = True
disallow_untyped_defs = True
disallow_untyped_calls = False
warn_no_return = True
warn_redundant_casts = True
warn_unused_ignores = True
strict_optional = True
check_untyped_defs = False