| [project] |
| name = "leaderboard-analytics-service" |
| version = "0.1.0" |
| description = "Analytics dashboard for MTEB leaderboard event logs" |
| readme = "README.md" |
| requires-python = ">=3.11" |
| dependencies = [ |
| "gradio>=6.0.0", |
| "pymongo>=4.10.0", |
| "pydantic>=2.9.0", |
| "pydantic-settings>=2.6.0", |
| "python-dotenv>=1.0.1", |
| "pandas>=2.2.3", |
| "plotly>=5.24.1", |
| ] |
|
|
| [project.optional-dependencies] |
| dev = [ |
| "pytest>=8.3.0", |
| "ruff>=0.8.0", |
| ] |
|
|
| [tool.ruff] |
| line-length = 100 |
| target-version = "py311" |
|
|
| [tool.ruff.lint] |
| select = ["E", "F", "I", "B", "UP", "C4"] |
|
|
| [tool.ruff.format] |
| quote-style = "double" |
| indent-style = "space" |
|
|
| [project.scripts] |
| leaderboard-analytics = "leaderboard_analytics.main:run" |
|
|
| [build-system] |
| requires = ["hatchling"] |
| build-backend = "hatchling.build" |
|
|
| [tool.hatch.build.targets.wheel] |
| packages = ["src/leaderboard_analytics"] |
|
|
| [tool.pytest.ini_options] |
| pythonpath = ["src"] |
|
|