From f62ff3f27e4dbb8ac1507edea5e80a9498339e9c Mon Sep 17 00:00:00 2001 From: Caner Date: Fri, 16 Aug 2024 09:45:37 -0400 Subject: [PATCH] Add long descripton to setup.py for pypi Adding long description for PyPi: https://pypi.org/project/unibench/ --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index 998219d..4f33a73 100644 --- a/setup.py +++ b/setup.py @@ -6,12 +6,18 @@ """ import setuptools +# read the contents of your README file +from pathlib import Path +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() + setuptools.setup( name="unibench", version="0.2.0", author="Haider Al-Tahan", author_email="haideraltahan@meta.com", description="This repository is designed to simplify the evaluation process of vision-language models. It provides a comprehensive set of tools and scripts for evaluating VLM models and benchmarks.", + long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/fairinternal/unibench", project_urls={