-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (27 loc) · 787 Bytes
/
pyproject.toml
File metadata and controls
28 lines (27 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[project]
name = "spidercreator"
version = "0.1.0"
description = "Automated web scraping spider generation using Browser Use and LLMs. Streamline the creation of Playwright-based spiders with minimal manual coding. Ideal for large enterprises with recurring data extraction needs."
readme = "README.md"
requires-python = ">=3.11,<3.13"
dependencies = [
"pydantic>=2.11.7",
"attrs>=25.3.0",
"attrs-strict>=1.0.1",
"betterhtmlchunking>=0.9.2",
"fastapi>=0.116.1",
"pandas>=2.3.2",
"prettyprinter>=0.18.0",
"ptyprocess>=0.7.0",
"pyhtml2md>=1.7.0",
"pyobjtojson>=0.3",
"sounddevice>=0.5.2",
"tldextract>=5.3.0",
"uvicorn>=0.35.0",
"validators>=0.35.0",
"browser-use>=0.6.1",
]
[dependency-groups]
dev = [
"ipython>=9.4.0",
]