| 1 | [project] |
| 2 | name = "cti-detection-automation" |
| 3 | version = "0.1.0" |
| 4 | requires-python = ">=3.10" |
| 5 | |
| 6 | [tool.pytest.ini_options] |
| 7 | pythonpath = ["src"] |
| 8 | testpaths = ["tests"] |
| 9 | |
| 10 | [tool.ruff] |
| 11 | line-length = 100 |
| 12 | src = ["src"] |
| 13 | |
| 14 | [tool.ruff.lint] |
| 15 | select = ["E", "F", "I", "B"] |
| 16 | |
| 17 | [tool.ruff.lint.per-file-ignores] |
| 18 | "tests/*" = ["E501"] |