| [project] |
| name = "stylegan2" |
| version = "0.1.0" |
| description = "" |
| readme = "README.md" |
| requires-python = ">=3.13" |
| dependencies = [ |
| "gradio[mcp,oauth]>=6.13.0", |
| "requests>=2.33.1", |
| "scipy>=1.17.1", |
| "torch==2.9.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", |
| "PGH003", |
| "PLR0913", |
| "PLR0915", |
| "TRY003", |
| ] |
| unfixable = [ |
| "F401", |
| ] |
|
|
| [tool.ruff.lint.pydocstyle] |
| convention = "google" |
|
|
| [tool.ruff.format] |
| docstring-code-format = true |
|
|
| [dependency-groups] |
| dev = [ |
| "pre-commit>=4.6.0", |
| "ruff>=0.15.11", |
| ] |
|
|