Skip to content

Commit

Permalink
Merge pull request #1 from facebookresearch/hazirbas-setup-pypi-descr…
Browse files Browse the repository at this point in the history
…iption

Add long descripton to setup.py for pypi
  • Loading branch information
haideraltahan authored Aug 21, 2024
2 parents 2ff0f83 + f62ff3f commit 103d9a9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
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={
Expand Down

0 comments on commit 103d9a9

Please sign in to comment.