-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (59 loc) · 1.39 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "scrapewizard"
version = "1.2.0"
description = "An agentic AI web scraper builder using Playwright and LLMs."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "ScrapeWizard Team"}
]
dependencies = [
"typer>=0.9.0",
"playwright>=1.40.0",
"beautifulsoup4>=4.12.0",
"lxml>=4.9.0",
"inquirerpy>=0.3.4",
"openai>=1.0.0",
"jinja2>=3.1.0",
"rich>=13.0.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.12.0",
"tenacity>=8.2.0",
"prompt_toolkit>=3.0.0",
"keyring>=24.0.0",
"pandas>=2.0.0",
"openpyxl>=3.1.0",
"python-json-logger>=2.0.0",
"yaspin>=2.0.0",
"sqlmodel",
"fastapi",
"uvicorn",
"python-dotenv",
"aiohttp",
"pillow",
"anthropic>=0.39.0",
"httpx>=0.27.0"
]
[project.scripts]
scrapewizard = "scrapewizard.cli.main:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["scrapewizard*", "scrapewizard_runtime*", "studio", "studio.backend", "studio.bridge", "studio.shared"]
[tool.setuptools.package-data]
studio = [
"frontend/dist/**/*",
"frontend/dist/*",
"shared/*.json",
"recordings/*.jsonl",
"bridge/*.js"
]
[tool.setuptools.exclude-package-data]
studio = [
"frontend/node_modules/**/*",
"frontend/node_modules/*"
]