-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.22 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (53 loc) · 1.22 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-scraping-stack"
version = "0.3.1"
description = "6-layer intelligent web intelligence platform — Scrape, Analyze, Synthesize, See"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"httpx>=0.27.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.0.0",
"python-dotenv>=1.0.0",
"scrapling>=0.4.0",
"ollama>=0.3.0",
"openai>=1.40.0",
]
[project.optional-dependencies]
providers = [
"crawl4ai>=0.6.0",
"firecrawl-py>=1.7.0",
"scrapegraphai>=1.14.0",
"playwright>=1.45.0",
]
mcp = [
"fastmcp>=0.9.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0.0",
"ruff>=0.3.0",
]
all = [
"ai-scraping-stack[providers,mcp,dev]",
]
[project.scripts]
scraping-stack = "api:app"
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = ["ignore::DeprecationWarning"]
[tool.setuptools.packages.find]
include = ["src*"]