Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add readme to pypi description #45

Merged
merged 1 commit into from
Sep 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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