-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 802 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 802 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
29
30
31
32
33
34
35
36
[project]
name = "fastwebfetch"
version = "0.1.0"
description = "Convert scraped HTML to cleaned Markdown for downstream processing."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"datasets>=2.15",
"beautifulsoup4>=4.12",
"markdownify>=0.9",
"mdformat>=0.7",
"tqdm>=4.65",
"pylatexenc @ git+https://github.com/trotsky1997/pylatexenc.git",
"patchright>=1.49.0,<2.0.0",
"requests>=2.31,<3.0",
"transformers>=4.41",
"torch>=2.2",
"mcp>=1.0.0",
]
[project.scripts]
fastwebfetch-mcp = "mcp_server:main"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["main", "mcp_server"]
[dependency-groups]
dev = [
"pytest>=8.2",
"black>=24.3",
"ruff>=0.0.340",
]