-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 881 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (39 loc) · 881 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
[project]
name = "small_redbook"
version = "0.1.0"
description = "Automated Xiaohongshu copy generator using AI"
authors = [
{ name = "Your Name", email = "your.email@example.com" }
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"langchain>=0.3.0",
"langchain-openai>=0.2.0",
"feedparser>=6.0.11",
"requests>=2.32.3",
"beautifulsoup4>=4.12.3",
"schedule>=1.2.2",
"playwright>=1.54.0",
"httpx>=0.27.0",
"python-dotenv>=1.0.1",
"langchain-mcp>=0.1.0",
"mcp>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=22.0.0",
"flake8>=4.0.0",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"black>=22.0.0",
"flake8>=4.0.0",
]