afancontrol/setup.cfg

114 lines
2.5 KiB
INI
Raw Normal View History

2021-10-26 12:58:36 +02:00
[coverage:run]
branch = True
source =
src
tests
[coverage:report]
show_missing = True
# The total coverage is higher, but when running tests without extras,
# not all code is being tested, thus the coverage is lower.
fail_under = 60
exclude_lines =
@abc.abstractmethod
@abc.abstractproperty
pragma: no cover
[flake8]
; E203 -- ignore whitespace in slices. See https://github.com/ambv/black#slices
; W503 line break before binary operator
; C901 '***' is too complex (10)
ignore = E203,W503
max-complexity = 13
max-line-length = 90
per-file-ignores =
src/afancontrol/config.py:C901
[isort]
; https://github.com/timothycrosley/isort#multi-line-output-modes
multi_line_output = 3
; https://github.com/ambv/black#how-black-wraps-lines
include_trailing_comma = True
force_grid_wrap = 0
combine_as_imports = True
line_length = 88
2021-10-26 14:11:39 +02:00
not_skip = __init__.py
2021-10-26 12:58:36 +02:00
[metadata]
author = Kostya Esmukov
author_email = kostya@esmukov.ru
classifier =
2021-10-26 14:11:39 +02:00
Development Status :: 4 - Beta
2021-10-26 12:58:36 +02:00
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
2021-10-26 14:11:39 +02:00
Programming Language :: Python :: 3.5
2021-10-26 12:58:36 +02:00
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: System :: Hardware
Topic :: System :: Monitoring
Topic :: System :: Systems Administration
description = Advanced fancontrol daemon
long_description = file: README.rst
name = afancontrol
url = https://github.com/KostyaEsmukov/afancontrol
[mypy]
check_untyped_defs = True
[mypy-prometheus_client.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-serial.*]
ignore_missing_imports = True
[options]
include_package_data = True
install_requires =
click>=6
package_dir =
= src
packages = find:
2021-10-26 14:11:39 +02:00
python_requires = >=3.5
2021-10-26 12:58:36 +02:00
[options.entry_points]
console_scripts =
afancontrol = afancontrol.__main__:main
[options.extras_require]
arduino =
pyserial>=3.0
metrics =
2021-10-26 14:11:39 +02:00
prometheus-client
2021-10-26 12:58:36 +02:00
dev =
2021-10-26 14:11:39 +02:00
black==19.10b0; python_version>='3.6'
coverage==5.1
flake8==3.7.9
isort==4.3.21
mypy==0.770
pytest==5.4.2
2021-10-26 12:58:36 +02:00
requests
2021-10-26 14:11:39 +02:00
sphinx==3.0.3
2021-10-26 12:58:36 +02:00
wheel
[options.packages.find]
where = src
[tool:pytest]
log_level = INFO
; Show warnings. Similar to `python -Wd`.
filterwarnings = d
; Show skip reasons
; Print shorter tracebacks
addopts = -ra --tb=short