2018-06-25 13:57:26 +00:00
|
|
|
[metadata]
|
2021-03-17 13:32:13 +00:00
|
|
|
license = Apache-2.0
|
2018-06-25 13:57:26 +00:00
|
|
|
license_file = LICENSE.md
|
|
|
|
platforms = any
|
|
|
|
description = Open-source home automation platform running on Python 3.
|
|
|
|
long_description = file: README.rst
|
|
|
|
keywords = home, automation
|
|
|
|
classifier =
|
|
|
|
Development Status :: 4 - Beta
|
|
|
|
Intended Audience :: End Users/Desktop
|
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: Apache Software License
|
|
|
|
Operating System :: OS Independent
|
2021-01-04 10:47:29 +00:00
|
|
|
Programming Language :: Python :: 3.8
|
|
|
|
Programming Language :: Python :: 3.9
|
2018-06-25 13:57:26 +00:00
|
|
|
Topic :: Home Automation
|
|
|
|
|
2016-02-14 00:56:32 +00:00
|
|
|
[flake8]
|
2017-11-20 01:39:24 +00:00
|
|
|
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
|
2021-04-25 10:38:40 +00:00
|
|
|
max-complexity = 25
|
2019-11-06 19:38:00 +00:00
|
|
|
doctests = True
|
2019-07-30 23:59:12 +00:00
|
|
|
# To work with Black
|
|
|
|
# E501: line too long
|
|
|
|
# W503: Line break occurred before a binary operator
|
|
|
|
# E203: Whitespace before ':'
|
|
|
|
# D202 No blank lines allowed after function docstring
|
2019-09-24 06:23:53 +00:00
|
|
|
# W504 line break after binary operator
|
2019-07-30 23:59:12 +00:00
|
|
|
ignore =
|
|
|
|
E501,
|
|
|
|
W503,
|
|
|
|
E203,
|
2019-09-24 06:23:53 +00:00
|
|
|
D202,
|
|
|
|
W504
|
2021-03-02 08:02:04 +00:00
|
|
|
noqa-require-code = True
|