-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
55 lines (49 loc) · 1.16 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
[metadata]
name = ha-deye-dehumidifier
description = Home Assistant integration for Deye Dehumidifier
author = Stackie Jia
author_email = [email protected]
license = MIT
license_files = LICENSE.txt
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/stackia/ha-deye-dehumidifier/
project_urls =
Source = https://github.com/stackia/ha-deye-dehumidifier/
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python
Topic :: Home Automation
[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
package_dir =
=custom_components
python_requires = >=3.10
install_requires =
importlib-metadata; python_version<"3.8"
libdeye==1.3.2
[options.packages.find]
where = custom_components
exclude =
tests
[options.extras_require]
dev =
pre-commit
black
flake8
mypy
homeassistant-stubs
[flake8]
# Some sane defaults for the code style checker flake8
max_line_length = 120
extend_ignore = E203, W503
# ^ Black-compatible
# E203 and W503 have edge cases handled by black
exclude =
.tox
build
dist
.eggs