finegrain-light-switcher / pyproject.toml
Pierre Chapuis
add application
17a4159 unverified
raw
history blame contribute delete
528 Bytes
[project]
name = "light-switcher"
version = "0.1.0"
description = "Finegrain Light Switcher (Gradio)"
authors = [
{ name = "Pierre Chapuis", email = "[email protected]" }
]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"UP", # pyupgrade
"A", # flake8-builtins
"B", # flake8-bugbear
"Q", # flake8-quotes
"I", # isort
]
[tool.pyright]
include = ["app.py"]
exclude = ["**/__pycache__"]