File: setup.cfg

package info (click to toggle)
python-rabbitair 0.0.8-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: python: 1,038; makefile: 13; sh: 5
file content (42 lines) | stat: -rw-r--r-- 1,138 bytes parent folder | download
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
[metadata]
name = python-rabbitair
version = 0.0.8
author = Rabbit Air
author_email = developer@rabbitair.com
description = Python library for local control of Rabbit Air air purifiers
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache-2.0
platforms = any
url = https://github.com/rabbit-air/python-rabbitair
project_urls =
    Bug Tracker = https://github.com/rabbit-air/python-rabbitair/issues
classifiers =
    Development Status :: 4 - Beta
    Intended Audience :: Developers
    License :: OSI Approved :: Apache Software License
    Operating System :: POSIX :: Linux
    Programming Language :: Python :: 3
    Topic :: Home Automation

[options]
zip_safe = False
packages = find:
python_requires = >=3.7
install_requires =
    cryptography
    typing-extensions;python_version<'3.8'
    zeroconf

[options.package_data]
* = py.typed

[flake8]
# 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
# W504 line break after binary operator
ignore =
    E501