| | [project] |
| | name = "bizarre-pose-estimator-tagger" |
| | version = "0.1.0" |
| | description = "" |
| | readme = "README.md" |
| | requires-python = ">=3.10" |
| | dependencies = [ |
| | "gradio>=5.20.0", |
| | "hf-transfer>=0.1.9", |
| | "numpy==1.23.5", |
| | "torch==2.4.0", |
| | "torchvision>=0.19.0", |
| | ] |
| |
|
| | [tool.ruff] |
| | line-length = 119 |
| |
|
| | [tool.ruff.lint] |
| | select = ["ALL"] |
| | ignore = [ |
| | "COM812", |
| | "D203", |
| | "D213", |
| | "E501", |
| | "SIM117", |
| | ] |
| | extend-ignore = [ |
| | "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 |
| |
|