-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (32 loc) · 1.2 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "unifi_ap"
version = "0.0.2"
authors = [
{ name="Tobias Perschon", email="[email protected]" },
]
description = "Python API for UniFi accesspoints"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"paramiko==3.5.0",
]
[project.urls]
Homepage = "https://github.com/tofuSCHNITZEL/unifi_ap"
Issues = "https://github.com/tofuSCHNITZEL/unifi_ap/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_"