Spaces:
Running
Running
File size: 894 Bytes
d8b2921 dabb6ef d8b2921 dabb6ef 841b545 a648108 ee4eb79 d8b2921 a49b090 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
[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"
|