2024-05-26 08:01:35 +08:00
|
|
|
from pathlib import Path
|
2024-04-16 05:01:47 +08:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2024-05-26 08:01:35 +08:00
|
|
|
this_directory = Path(__file__).parent
|
|
|
|
long_description_content = (this_directory / "README.md").read_text()
|
|
|
|
|
2024-04-16 05:01:47 +08:00
|
|
|
setup(
|
|
|
|
name='firecrawl-py',
|
2024-05-21 01:06:48 +08:00
|
|
|
version='0.0.9',
|
2024-04-26 02:20:35 +08:00
|
|
|
url='https://github.com/mendableai/firecrawl',
|
2024-04-16 05:01:47 +08:00
|
|
|
author='Mendable.ai',
|
|
|
|
author_email='nick@mendable.ai',
|
|
|
|
description='Python SDK for Firecrawl API',
|
2024-05-26 08:01:35 +08:00
|
|
|
long_description=long_description_content,
|
|
|
|
long_description_content_type="text/markdown",
|
2024-05-09 08:35:16 +08:00
|
|
|
packages=find_packages(),
|
2024-04-16 05:01:47 +08:00
|
|
|
install_requires=[
|
|
|
|
'requests',
|
|
|
|
],
|
|
|
|
)
|