firecrawl/apps/python-sdk/setup.py

15 lines
346 B
Python
Raw Permalink Normal View History

2024-04-15 21:01:47 +00:00
from setuptools import setup, find_packages
setup(
name='firecrawl-py',
2024-04-25 18:20:35 +00:00
version='0.0.6',
url='https://github.com/mendableai/firecrawl',
2024-04-15 21:01:47 +00:00
author='Mendable.ai',
author_email='nick@mendable.ai',
description='Python SDK for Firecrawl API',
packages=find_packages(),
install_requires=[
'requests',
],
)