2024-04-15 17:01:47 -04:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='firecrawl-py',
|
2024-05-20 13:06:48 -04:00
|
|
|
version='0.0.9',
|
2024-04-25 14:20:35 -04:00
|
|
|
url='https://github.com/mendableai/firecrawl',
|
2024-04-15 17:01:47 -04:00
|
|
|
author='Mendable.ai',
|
|
|
|
author_email='nick@mendable.ai',
|
|
|
|
description='Python SDK for Firecrawl API',
|
2024-05-08 20:35:16 -04:00
|
|
|
packages=find_packages(),
|
2024-04-15 17:01:47 -04:00
|
|
|
install_requires=[
|
|
|
|
'requests',
|
2024-05-24 16:56:27 -04:00
|
|
|
'pytest',
|
2024-04-15 17:01:47 -04:00
|
|
|
],
|
|
|
|
)
|