0
v-firecrawl/apps/python-sdk/setup.py
2024-05-26 18:03:37 -07:00

15 lines
343 B
Python

from setuptools import setup, find_packages
setup(
name='firecrawl-py',
version='0.0.10',
url='https://github.com/mendableai/firecrawl',
author='Mendable.ai',
author_email='nick@mendable.ai',
description='Python SDK for Firecrawl API',
packages=find_packages(),
install_requires=[
'requests',
],
)