firecrawl/apps/python-sdk/setup.py

15 lines
342 B
Python
Raw Normal View History

2024-04-16 05:01:47 +08:00
from setuptools import setup, find_packages
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-09 08:35:16 +08:00
packages=find_packages(),
2024-04-16 05:01:47 +08:00
install_requires=[
'requests',
],
)