Skip to content

Commit

Permalink
add readme to pypi description
Browse files Browse the repository at this point in the history
  • Loading branch information
olirice committed Sep 14, 2023
1 parent 98eb218 commit bc9eef1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import logging
import os
import sys
from pathlib import Path

import setuptools

Expand Down Expand Up @@ -36,6 +37,7 @@ def read_package_variable(key, filename="__init__.py"):

check_python_version()

long_description = (Path(__file__).parent / "README.md").read_text()

REQUIRES = [
"pgvector==0.1.*",
Expand All @@ -50,6 +52,8 @@ def read_package_variable(key, filename="__init__.py"):
name=read_package_variable("__project__"),
version=read_package_variable("__version__"),
description="pgvector client",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/supabase/vecs",
author="Oliver Rice",
packages=setuptools.find_packages("src", exclude="tests"),
Expand Down

0 comments on commit bc9eef1

Please sign in to comment.