-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (53 loc) · 1.83 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", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "crawl-relevance-layers"
version = "1.1.1"
description = "Pure Python async web crawling with BM25 + semantic relevance ranking."
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [{name = "Mrsultan7890"}]
keywords = ["crawling", "scraping", "relevance", "bm25", "semantic", "nlp", "async", "playwright", "sitemap", "duckduckgo"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Text Processing :: Indexing",
"Typing :: Typed",
]
dependencies = [
"httpx[http2,brotli]>=0.27",
"beautifulsoup4>=4.12",
"lxml>=5.0",
"rank_bm25>=0.2.2",
"numpy>=1.26",
"duckduckgo-search>=6.0",
]
[project.optional-dependencies]
semantic = ["sentence-transformers>=3.0", "torch>=2.0"]
js = ["playwright>=1.40"]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "httpx"]
all = ["sentence-transformers>=3.0", "torch>=2.0", "playwright>=1.40"]
[project.urls]
Homepage = "https://github.com/Mrsultan7890/crl"
Repository = "https://github.com/Mrsultan7890/crl"
Issues = "https://github.com/Mrsultan7890/crl/issues"
Changelog = "https://github.com/Mrsultan7890/crl/blob/main/CHANGELOG.md"
Instagram = "https://www.instagram.com/who_is_the_black_hat"
[project.scripts]
crl = "crl.cli:entry_point"
[tool.setuptools.packages.find]
where = ["."]
include = ["crl*"]
[tool.setuptools.package-data]
crl = ["py.typed"]
[tool.pytest.ini_options]
asyncio_mode = "auto"