forked from sim0nx/python-openhab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
70 lines (61 loc) · 1.6 KB
/
setup.cfg
File metadata and controls
70 lines (61 loc) · 1.6 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
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
[bdist_wheel]
universal = 0
[metadata]
name = python-openhab
description = python library for accessing the openHAB REST API
long_description = file: README.rst
author = Georges Toth
author_email = georges@trypill.org
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.23
python-dateutil~=2.2
[options.package_data]
openhab = py.typed
[options.extras_require]
dev =
pylint
mypy
flake8
flake8-docstrings
test =
pytest
coverage
[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