-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc17bee
commit e7c99a7
Showing
3 changed files
with
44 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "rpi_screenbrightness_mqtt" | ||
version = "0.6.0" | ||
authors = [ | ||
{ name="Tobias Perschon", email="[email protected]" }, | ||
] | ||
description = "A simple service that conntects to an mqtt broker so you can control the backlight of an rpi (touch)screen via mqtt (and eg. homeassistant)" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies = [ | ||
"rpi-backlight==2.6.0", | ||
"paho-mqtt==2.1.0" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/tofuSCHNITZEL/rpi-screenbrightness-mqtt" | ||
Issues = "https://github.com/tofuSCHNITZEL/rpi-screenbrightness-mqtt/issues" | ||
|
||
[tool.pylint.main] | ||
ignore-patterns = ["^\\.#"] | ||
|
||
py-version = "3.11" | ||
|
||
[tool.pylint.basic] | ||
no-docstring-rgx = "^_" | ||
|
||
[tool.pylint."messages control"] | ||
disable = ["too-many-arguments", "too-many-instance-attributes", "raw-checker-failed", "bad-inline-option", "locally-disabled", "file-ignored", "suppressed-message", "useless-suppression", "deprecated-pragma", "use-symbolic-message-instead", "use-implicit-booleaness-not-comparison-to-string", "use-implicit-booleaness-not-comparison-to-zero"] | ||
|
||
[tool.pylint.variables] | ||
ignored-argument-names = "_.*|^ignored_|^unused_" | ||
|
||
[tool.setuptools] | ||
packages = ["rpi_screenbrightness_mqtt"] |