Spaces:
Sleeping
Sleeping
| [build-system] | |
| requires = ["setuptools>=68", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "searchqual" | |
| version = "0.1.0" | |
| description = "Evaluation platform for search and RAG systems" | |
| readme = "README.md" | |
| requires-python = ">=3.9" | |
| authors = [{name = "SearchQual Team", email = "ops@example.com"}] | |
| license = {text = "MIT"} | |
| dependencies = [ | |
| "typer[all]>=0.9", | |
| "pydantic>=2.7", | |
| "PyYAML>=6.0", | |
| "aiohttp>=3.9", | |
| "rich>=13.7", | |
| "fastapi>=0.110", | |
| "uvicorn[standard]>=0.24", | |
| "jinja2>=3.1", | |
| "pandas>=2.1", | |
| "numpy>=1.24", | |
| "plotly>=5.18", | |
| ] | |
| [project.optional-dependencies] | |
| aws = ["boto3>=1.26"] | |
| safety = ["presidio-analyzer>=0.13", "detoxify>=0.5"] | |
| demo = ["streamlit>=1.32", "duckdb>=0.9"] | |
| [project.scripts] | |
| sq = "searchqual.cli:app" | |
| [tool.setuptools.packages.find] | |
| where = ["searchqual"] | |