-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (56 loc) · 1.23 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
[project]
name = "podcast-agent"
version = "0.1.3"
description = "Agentic workflow for generating podcast scripts and timelines using LLMs"
authors = [
{ name="Adam Zhou", email="jianzhou42@163.com" }
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"colorama>=0.4.6",
"httpx>=0.28.1",
"openai>=2.3.0",
"pydantic>=2.12.2",
"python-dotenv>=1.1.1",
]
keywords = ["podcast", "agent", "llm", "agentic-workflow"]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[dependency-groups]
dev = [
"pre-commit>=4.3.0",
"pytest>=8.4.0",
"ruff>=0.11.12",
]
[[tool.uv.index]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[tool.ruff]
lint.select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"T201",
"UP",
]
lint.ignore = [
"UP006",
"UP007",
# We actually do want to import from typing_extensions
"UP035",
"E501",
"T201",
]
line-length = 120
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["D", "UP"]
[tool.ruff.lint.pydocstyle]
convention = "google"