| [project] |
| name = "tiny-aya-hf-space" |
| version = "0.1.0" |
| description = "Tiny Aya HF Space" |
| readme = "README.md" |
| requires-python = ">=3.12" |
| dependencies = [ |
| "cohere>=5.16.1", |
| "gradio>=6.5.1", |
| ] |
|
|
| [tool.ruff] |
| line-length = 119 |
|
|
| [tool.ruff.lint] |
| select = ["ALL"] |
| ignore = [ |
| "COM812", |
| "D203", |
| "D213", |
| "E501", |
| "SIM117", |
| |
| "D100", |
| "D101", |
| "D102", |
| "D103", |
| "D104", |
| "D105", |
| "D107", |
| "EM101", |
| "FBT001", |
| "FBT002", |
| "PD901", |
| "PGH003", |
| "PLR0913", |
| "PLR0915", |
| "TRY003", |
| ] |
| unfixable = [ |
| "F401", |
| ] |
|
|
| [tool.ruff.lint.pydocstyle] |
| convention = "google" |
|
|
| [tool.ruff.lint.per-file-ignores] |
| "*.ipynb" = ["T201", "T203"] |
|
|
| [tool.ruff.format] |
| docstring-code-format = true |
|
|