-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.48 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
[project]
name = "url-checker"
version = "1.0.0"
description = "Modern FastMCP server for intelligent hyperlink validation, semantic analysis, and automated screenshot capture with LLM integration"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Artur Rossa", email = "artur.rossa@example.com"}
]
keywords = ["mcp", "fastmcp", "url-validation", "hyperlink-checker", "screenshot", "llm", "ai-tools"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"fastmcp>=0.2.0",
"httpx>=0.27.0",
"beautifulsoup4>=4.12.0",
"playwright>=1.40.0",
"scikit-learn>=1.3.0",
"nltk>=3.8.0",
"lxml>=4.9.0",
"pillow>=10.0.0",
]
[dependency-groups]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.scripts]
url-checker = "url_checker.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]