| Doug Goldstein | 4a405c5 | 2025-02-02 11:22:54 -0500 | [diff] [blame] | 1 | [build-system] |
| 2 | requires = ["pbr>=6.0.0", "setuptools>=64.0.0"] | ||||
| 3 | build-backend = "pbr.build" | ||||
| Doug Goldstein | 5564cee | 2025-02-02 11:29:29 -0500 | [diff] [blame] | 4 | |
| 5 | [tool.doc8] | ||||
| 6 | ignore = ["D001"] | ||||
| 7 | |||||
| 8 | [tool.ruff] | ||||
| 9 | line-length = 79 | ||||
| 10 | target-version = "py37" | ||||
| 11 | |||||
| 12 | [tool.ruff.lint] | ||||
| 13 | select = [ | ||||
| 14 | "E", # pycodestyle (error) | ||||
| 15 | "F", # pyflakes | ||||
| 16 | "G", # flake8-logging-format | ||||
| 17 | "LOG", # flake8-logging | ||||
| 18 | ] | ||||