mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 11:42:24 +08:00
15 lines
349 B
Python
15 lines
349 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name='firecrawl-py',
|
||
|
version='0.0.5',
|
||
|
url='https://github.com/mendableai/firecrawl-py',
|
||
|
author='Mendable.ai',
|
||
|
author_email='nick@mendable.ai',
|
||
|
description='Python SDK for Firecrawl API',
|
||
|
packages=find_packages(),
|
||
|
install_requires=[
|
||
|
'requests',
|
||
|
],
|
||
|
)
|