-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.09 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "search-ai-core"
version = "2.0.4"
description = "Search the web with advanced filters and LLM-friendly output formats!"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = { text = "MIT" }
urls = { "Homepage" = "https://github.com/jpjacobpadilla/SearchAI" }
authors = [
{ name = "Jacob Padilla" }
]
keywords = [
"python", "search", "markdown", "search-engine",
"data", "ai", "web-crawler", "llm"
]
dependencies = [
"curl-cffi>=0.13.0",
"html2text>=2025.4.15",
"lxml>=5.4.0",
"nest-asyncio>=1.6.0",
"playwright>=1.52.0",
"publicsuffix2>=2.20191221",
"pydantic>=2.11.5",
"tenacity>=9.1.2",
]
[dependency-groups]
dev = [
"notebook>=7.4.2",
"pytest>=8.3.5",
"pytest-asyncio>=1.0.0",
]
[tool.setuptools.packages.find]
include = ["search_ai"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["I", "TID"]
[tool.ruff.format]
quote-style = "single"
[tool.pytest.ini_options]
testpaths = ["tests"]