Spaces:
Sleeping
Sleeping
[tool.poetry] | |
name = "mars-vision-leaderboard" | |
version = "0.1.0" | |
description = "A comprehensive leaderboard for evaluating computer vision models on Mars-specific datasets" | |
authors = ["Your Name <your.email@example.com>"] | |
readme = "README.md" | |
packages = [{include = "app"}] | |
[tool.poetry.dependencies] | |
python = ">=3.9,<3.13" | |
gradio = "^4.19.2" | |
pandas = "^2.2.0" | |
numpy = "^1.26.0" | |
plotly = "^5.18.0" | |
huggingface-hub = {extras = ["cli"], version = "^0.29.3"} | |
[tool.poetry.group.dev.dependencies] | |
black = "^24.1.0" | |
isort = "^5.13.0" | |
flake8 = "^7.0.0" | |
pytest = "^8.0.0" | |
[build-system] | |
requires = ["poetry-core"] | |
build-backend = "poetry.core.masonry.api" | |
[tool.poetry.scripts] | |
mars-vision-leaderboard = "run:main" | |
[tool.black] | |
line-length = 88 | |
target-version = ['py39'] | |
include = '\.pyi?$' | |
[tool.isort] | |
profile = "black" | |
multi_line_output = 3 | |
line_length = 88 |