-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.07 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
[project]
name = "datek-web-crawler"
version = "0.1.0"
description = "Simple, powerful web crawler"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"lxml>=5.3.2",
"structlog>=25.2.0",
]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"lxml-stubs>=0.5.1",
"mypy>=1.15.0",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-cov>=6.1.1",
"radon>=6.0.1",
"ruff>=0.11.4",
"types-aiofiles>=24.1.0.20250326",
"boto3>=1.37.1",
"types-boto3[s3]>=1.37.33",
"datek-app-utils>=0.4.0",
]
[project.optional-dependencies]
httpx = [
"httpx>=0.28.1",
]
s3 = [
"datek-app-utils>=0.4.0",
"boto3>=1.37.1",
"types-boto3[s3]>=1.37.33",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"I", # isort
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope="session"
asyncio_default_test_loop_scope="session"
addopts = "--cov=datek_web_crawler"
[tool.uv]
link-mode = "symlink"