19 lines
346 B
TOML
19 lines
346 B
TOML
|
|
[project]
|
||
|
|
name = "upscale-ui"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Real-ESRGAN Web UI for image and video upscaling"
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.10"
|
||
|
|
license = {text = "MIT"}
|
||
|
|
|
||
|
|
[tool.setuptools]
|
||
|
|
packages = ["src"]
|
||
|
|
|
||
|
|
[tool.ruff]
|
||
|
|
line-length = 100
|
||
|
|
target-version = "py310"
|
||
|
|
|
||
|
|
[tool.ruff.lint]
|
||
|
|
select = ["E", "F", "W", "I"]
|
||
|
|
ignore = ["E501"]
|