| [project] | |
| name = "ml4se-bench-viewer" | |
| version = "0.1.0" | |
| description = "Web-based visualization tool for browsing and inspecting popular ML4SE benchmark datasets" | |
| readme = "README.md" | |
| requires-python = ">=3.8" | |
| dependencies = [ | |
| "flask>=3.0.0", | |
| "pygments>=2.17.2", | |
| "datasets>=2.14.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "ruff>=0.8.0", | |
| ] | |
| [tool.ruff] | |
| line-length = 100 | |
| target-version = "py38" | |
| [tool.ruff.lint] | |
| select = [ | |
| "E", # pycodestyle errors | |
| "W", # pycodestyle warnings | |
| "F", # pyflakes | |
| "I", # isort | |
| "B", # flake8-bugbear | |
| "C4", # flake8-comprehensions | |
| "UP", # pyupgrade | |
| ] | |
| ignore = [ | |
| "E501", # line too long (handled by formatter) | |
| ] | |
| [tool.ruff.format] | |
| quote-style = "double" | |
| indent-style = "space" | |