Skip to content

Commit

Permalink
Fix up readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehinds committed Oct 26, 2024
1 parent 84ba647 commit f9ef562
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
@@ -1,5 +1,8 @@
from setuptools import find_packages, setup

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

setup(
name="promptwright",
version="0.1.0",
Expand Down Expand Up @@ -27,7 +30,7 @@
author="Luke Hinds",
author_email="[email protected]",
description="LLM based Synthetic Data Generation",
long_description=open("README.md").read(), # noqa: SIM115
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/StacklokLabs/promptwright",
classifiers=[
Expand Down

0 comments on commit f9ef562

Please sign in to comment.