Files
yzfly__douyin-mcp-server/pyproject.toml
T
yzfly 97c7dbdc69 v1.3.0: 新增 Claude Code Skill,支持批量提取文案
- 新增 douyin-video Skill,支持命令行批量提取视频文案
- 文案自动保存为 Markdown 格式
- 每个视频独立文件夹存储
- 支持 --save-video 同时保存视频
- 统一环境变量名为 API_KEY
- 更新 README 文档
2026-01-30 14:43:35 +08:00

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"