mirror of
https://github.com/yzfly/douyin-mcp-server.git
synced 2026-09-14 20:17:26 +08:00
97c7dbdc69
- 新增 douyin-video Skill,支持命令行批量提取视频文案 - 文案自动保存为 Markdown 格式 - 每个视频独立文件夹存储 - 支持 --save-video 同时保存视频 - 统一环境变量名为 API_KEY - 更新 README 文档
38 lines
1.0 KiB
TOML
38 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "douyin-mcp-server"
|
|
version = "1.3.0"
|
|
description = "MCP server for downloading Douyin videos and extracting text"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "yzfly", email = "yz.liu.me@gmail.com"}
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp>=1.0.0",
|
|
"requests",
|
|
"ffmpeg-python",
|
|
"tqdm",
|
|
"dashscope",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/yzfly/douyin-mcp-server"
|
|
Repository = "https://github.com/yzfly/douyin-mcp-server"
|
|
Issues = "https://github.com/yzfly/douyin-mcp-server/issues"
|
|
|
|
[project.scripts]
|
|
douyin-mcp-server = "douyin_mcp_server.server:main" |