MedVQA / pyproject.toml
SushantGautam's picture
Refactor submission_task1.py to include metric calculations and enhance output data structure; update pyproject.toml for improved dependency management.
8bd97dc
raw
history blame
806 Bytes
[project]
authors = [
{name = "Sushant Gautam", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"huggingface_hub",
"huggingface_hub[hf_transfer]",
"gradio_client==1.3.0",
"evaluate",
"rouge_score",
]
description = "Competition Submission CLI for ImageCLEFmed-MedVQA-GI-2025 (https://github.com/simula/ImageCLEFmed-MEDVQA-GI-2025)"
license = {text = "MIT"}
name = "medvqa"
readme = "README.md"
requires-python = ">=3.6"
version = "0.14.8"
[project.scripts]
medvqa = "medvqa.cli:main"
[tool.setuptools.packages.find]
include = ["*", "competitions/**/"]
where = ["."]
[project.urls]
Homepage = "https://github.com/SushantGautam/MedVQA"
Issues = "https://github.com/SushantGautam/MedVQA/issues"