firecrawl/apps/python-sdk/setup.py
rafaelsideguide 397769c7e3 added python sdk e2e tests with pytest
some of them are still missing though
2024-05-24 17:56:27 -03:00

16 lines
360 B
Python

from setuptools import setup, find_packages
setup(
name='firecrawl-py',
version='0.0.9',
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',
'pytest',
],
)