-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 982 Bytes
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 982 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
37
38
39
40
41
42
43
44
45
46
47
[project]
name = "tsuyu-mi"
version = "0.1.0"
description = "Raindrop.io コレクションの記事を取得・要約し HTML 一覧として出力するバッチツール — Tsuyu-mi"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27.2",
"pydantic>=2.10",
"pydantic-settings>=2.7",
"python-dotenv>=1.0",
"trafilatura>=2.0",
"readability-lxml>=0.8.1",
"jinja2>=3.1.5",
"markupsafe>=2.1.5",
"rich>=13.9",
"click>=8.1.8",
"openai>=1.60",
"google-genai>=1.5",
"anthropic>=0.44",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"respx>=0.21",
"ruff>=0.4",
"pip-audit>=2.7",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]