mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
Added long description to PyPi
https://packaging.python.org/en/latest/guides/making-a-pypi-friendly-readme/
This commit is contained in:
parent
e5c8719554
commit
e5c6ac23fe
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue
Block a user