blob: 4fa5ffdd257ca725fbe479834e4ba6851cfe3276 [file] [log] [blame]
Doug Goldstein4a405c52025-02-02 11:22:54 -05001[build-system]
2requires = ["pbr>=6.0.0", "setuptools>=64.0.0"]
3build-backend = "pbr.build"
Doug Goldstein5564cee2025-02-02 11:29:29 -05004
5[tool.doc8]
6ignore = ["D001"]
7
8[tool.ruff]
9line-length = 79
10target-version = "py37"
11
12[tool.ruff.lint]
13select = [
14 "E", # pycodestyle (error)
15 "F", # pyflakes
16 "G", # flake8-logging-format
17 "LOG", # flake8-logging
18]