mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
ee8a54213c
tested websocket with example.py without asyncio and it works with no problem.
52 lines
1.7 KiB
TOML
52 lines
1.7 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
dynamic = ["version"]
|
|
name = "firecrawl-py"
|
|
description = "Python SDK for Firecrawl API"
|
|
readme = {file="README.md", content-type = "text/markdown"}
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"requests",
|
|
"python-dotenv",
|
|
"websockets",
|
|
"nest-asyncio"
|
|
]
|
|
authors = [{name = "Mendable.ai",email = "nick@mendable.ai"}]
|
|
maintainers = [{name = "Mendable.ai",email = "nick@mendable.ai"}]
|
|
license = {text = "GNU Affero General Public License v3 (AGPLv3)"}
|
|
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Environment :: Web Environment",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Natural Language :: English",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Topic :: Internet",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
|
|
"Topic :: Software Development",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Text Processing",
|
|
"Topic :: Text Processing :: Indexing",
|
|
]
|
|
|
|
keywords = ["SDK", "API", "firecrawl"]
|
|
|
|
[project.urls]
|
|
"Documentation" = "https://docs.firecrawl.dev"
|
|
"Source" = "https://github.com/mendableai/firecrawl"
|
|
"Tracker" = "https://github.com/mendableai/firecrawl/issues"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|