-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (82 loc) · 2.37 KB
/
pyproject.toml
File metadata and controls
89 lines (82 loc) · 2.37 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "rednote-analyzer-mcp"
version = "0.1.6"
description = "An MCP server that enables LLMs to analyze, understand, and generate RedNote (小红书) content through structured tools and prompts."
readme = "README.md"
authors = [
{ name = "ShellyDeng08", email = "xldeng0808@gmail.com" }
]
requires-python = ">=3.11"
license = "MIT"
keywords = [
"mcp",
"mcp-server",
"model-context-protocol",
"rednote",
"xiaohongshu",
"小红书",
"xhs",
"llm",
"ai",
"ai-tools",
"claude",
"anthropic",
"content-analysis",
"social-media",
"chinese-social-media",
"content-generation",
"web-scraping",
"playwright",
"automation",
"nlp",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Text Processing :: General",
"Framework :: FastAPI",
"Operating System :: OS Independent",
"Typing :: Typed",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English",
]
dependencies = [
"mcp[cli]",
"pydantic>=2.0",
"playwright>=1.40",
]
[project.urls]
Homepage = "https://github.com/ShellyDeng08/rednote-analyzer-mcp"
Documentation = "https://github.com/ShellyDeng08/rednote-analyzer-mcp#readme"
Repository = "https://github.com/ShellyDeng08/rednote-analyzer-mcp"
Issues = "https://github.com/ShellyDeng08/rednote-analyzer-mcp/issues"
Changelog = "https://github.com/ShellyDeng08/rednote-analyzer-mcp/releases"
[project.scripts]
rednote-analyzer-mcp = "rednote_analyzer_mcp.server:main"
rednote-login = "rednote_analyzer_mcp.login:main"
[build-system]
requires = ["uv_build>=0.10.0,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"ruff>=0.8",
]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"