-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.41 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (63 loc) · 1.41 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
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "latebra"
version = "0.2.0"
description = "Latebra - Multi-layer anti-bot evasion MCP server"
requires-python = ">=3.12"
dependencies = [
"curl-cffi>=0.7.0",
"httpx>=0.27.0",
"mcp>=1.0.0",
"ddgs>=9.0.0",
]
[project.scripts]
latebra = "latebra.__main__:main"
latebra-mcp = "latebra.server:cli"
[project.optional-dependencies]
browser = [
"patchright>=1.0.0",
"camoufox>=0.2.0",
"nodriver>=0.38.0",
]
extraction = [
"crawl4ai>=0.4.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"ruff>=0.5.0",
"mypy>=1.10.0",
]
all = [
"latebra[browser]",
"latebra[extraction]",
"latebra[dev]",
]
captcha = [
"httpx>=0.27.0",
]
[project.urls]
homepage = "https://github.com/evandrodevbr/latebra"
repository = "https://github.com/evandrodevbr/latebra"
[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --tb=short"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"benchmark: marks tests for performance benchmarking",
"memory: marks tests for memory profiling",
]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.mypy]
python_version = "3.12"
strict = true
ignore_missing_imports = true