Skip to content

Commit

Permalink
fix: include readme as long description in setup.py (#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcembalest authored Nov 8, 2024
1 parent 08d7566 commit 4d315e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@

description = "The official Nomic python client."

with open("README.md") as f:
long_description = f.read()

setup(
name="nomic",
version="3.3.0",
url="https://github.com/nomic-ai/nomic",
description=description,
long_description=description,
long_description=long_description,
packages=find_packages(include=["nomic", "nomic.*"]),
author_email="support@nomic.ai",
author="nomic.ai",
Expand Down

0 comments on commit 4d315e9

Please sign in to comment.