45 lines
804 B
INI
45 lines
804 B
INI
# https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
|
|
|
|
[metadata]
|
|
name = hasskisok
|
|
author = Mike Bloy
|
|
author_email = mike@bloy.org
|
|
description = Helper application for homeassistant kiosk screens
|
|
long_description = file: README.md
|
|
license = MIT
|
|
url = https://git.bloy.org/mike/hasskiosk
|
|
|
|
[options]
|
|
setup_requires=
|
|
zip_safe = False
|
|
include_package_data = True
|
|
package_dir =
|
|
=src
|
|
packages = find:
|
|
install_requires =
|
|
paho-mqtt
|
|
|
|
[options.extras_require]
|
|
dev =
|
|
bpython
|
|
flake8
|
|
flake8-bandit
|
|
flake8-blind-except
|
|
flake8-builtins
|
|
flake8-docstrings
|
|
flake8-executable
|
|
flake8-isort
|
|
flake8-logging-format
|
|
mypy
|
|
pdbpp
|
|
pycodestyle
|
|
pydocstyle
|
|
pytest
|
|
pytest-cov
|
|
python-language-server
|
|
rope
|
|
sphinx
|
|
|
|
[options.packages.find]
|
|
where=src
|