likable / pyproject.toml
jens-l's picture
Removed startup print statements from app.py, updated numpy and pandas versions in requirements.txt and pyproject.toml for compatibility.
ee4eb79
raw
history blame contribute delete
894 Bytes
[project]
name = "likable"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"duckduckgo-search>=8.0.2",
"gradio>=5.32.0",
"mcp>=1.9.2",
"smolagents[litellm,mcp]>=1.17.0",
"selenium>=4.25.0",
"requests>=2.32.0",
"watchdog>=5.0.0",
"matplotlib>=3.10.3",
"numpy>=1.23,<2.3.0",
"pandas>=1.0,<2.3.0",
]
[dependency-groups]
dev = [
"ruff>=0.8.0",
"pre-commit>=4.0.0",
]
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"