diff --git a/apps/python-sdk/setup.py b/apps/python-sdk/setup.py index 7df520e..f0359d5 100644 --- a/apps/python-sdk/setup.py +++ b/apps/python-sdk/setup.py @@ -1,5 +1,9 @@ +from pathlib import Path from setuptools import setup, find_packages +this_directory = Path(__file__).parent +long_description_content = (this_directory / "README.md").read_text() + setup( name='firecrawl-py', version='0.0.9', @@ -7,6 +11,8 @@ setup( author='Mendable.ai', author_email='nick@mendable.ai', description='Python SDK for Firecrawl API', + long_description=long_description_content, + long_description_content_type="text/markdown", packages=find_packages(), install_requires=[ 'requests',