infersense / pyproject.toml
semioz
ruff
69578a4
raw
history blame contribute delete
971 Bytes
[project]
name = "infersense"
version = "0.1.0"
authors = [{ name = "Semih Berkay Ozturk" }]
dependencies = [
"gradio>=5.38.1",
"langchain-community>=0.3.27",
"langchain-core>=0.3.72",
"langchain-groq>=0.3.6",
"langchain-huggingface>=0.3.1",
"langgraph>=0.5.4",
"polars>=1.31.0",
"pytesseract>=0.3.13",
"supabase>=2.17.0",
]
[tool.ruff.lint]
extend-select = [
"F", # Pyflakes rules
"W", # PyCodeStyle warnings
"I", # Sort imports properly
"UP", # Warn if certain things can changed due to newer Python versions
"C4", # Catch incorrect use of comprehensions, dict, list, etc
"ISC", # Good use of string concatenation
"ICN", # Use common import conventions
"RET", # Good return practices
"SIM", # Common simplification rules
"TID", # Some good import practices
"TC", # Enforce importing certain types in a TYPE_CHECKING block
]