-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (48 loc) · 1.03 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "blogagent"
version = "0.1.0"
description = "Source-grounded editorial agent for researched, fact-checked blog posts."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.0",
"streamlit>=1.32",
"pyyaml>=6.0",
"httpx>=0.27",
"beautifulsoup4>=4.12",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.4",
]
api = ["fastapi>=0.100"]
anthropic = ["anthropic>=0.25"]
openai = ["openai>=1.0"]
google = ["google-genai>=1.0"]
llm = ["anthropic>=0.25", "openai>=1.0", "google-genai>=1.0"]
[dependency-groups]
dev = [
"pytest>=8.0",
"ruff>=0.4",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
extend-exclude = [
".venv",
"venv",
".git",
"__pycache__",
".claude/skills/skill-creator",
]
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.lint.per-file-ignores]
"api/index.py" = ["E501"]