any_coder / pyproject.toml
akhaliq's picture
akhaliq HF Staff
update
c510966
raw
history blame contribute delete
442 Bytes
[project]
name = "anychat"
version = "0.1.0"
description = ""
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"ai-gradio[huggingface, gemini]==0.2.55",
]
[tool.uv.sources]
[tool.ruff]
line-length = 119
[tool.ruff.lint]
select = [
"E",
"F",
#"I",
"N",
"S",
"T",
"UP",
"W",
]
ignore = ["T201"]
unfixable = [
"F401", # unused-import
]
[tool.ruff.format]
docstring-code-format = true