| [project] | |
| name = "llm-image" | |
| version = "0.1.0" | |
| description = "Add your description here" | |
| readme = "README.md" | |
| requires-python = ">=3.11" | |
| dependencies = [ | |
| "fastapi[standard]>=0.115.8", | |
| "gradio>=5.3.0", | |
| "ipykernel>=6.29.5", | |
| "litellm>=1.61.13", | |
| "numpy>=2.2.3", | |
| "openai>=1.63.2", | |
| "pytest>=8.3.4", | |
| ] | |
| [tool.black] | |
| line-length = 88 | |
| target-version = ["py311"] | |
| include = '\.pyi?$' | |
| [tool.ruff] | |
| line-length = 88 | |
| target-version = "py311" | |
| select = [ | |
| "E", # pycodestyle errors | |
| "W", # pycodestyle warnings | |
| "F", # pyflakes | |
| "I", # isort | |
| "C", # flake8-comprehensions | |
| "B", # flake8-bugbear | |
| ] | |
| ignore = [] | |
| [tool.ruff.per-file-ignores] | |
| "__init__.py" = ["F401"] | |
| [tool.ruff.isort] | |
| known-first-party = ["src"] | |
| [tool.ruff.mccabe] | |
| max-complexity = 10 | |