-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 770 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 770 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
[project]
name = "hexo-blog-processor"
version = "0.1.0"
description = "Hexo blog helper scripts (sync notes, process posts, rename covers)"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "estom" }]
dependencies = [
"pathspec>=0.12.1",
"jieba>=0.42.1",
"scikit-learn>=1.3",
"textrank4zh>=0.3",
"networkx<3",
"keybert>=0.8.5",
"sentence-transformers>=3.0.0",
"pillow>=12.1.0",
]
[project.scripts]
hexo-sync = "processor.sync:main"
hexo-proc = "processor.proc:main"
hexo-rename = "processor.rename_covers:main"
[build-system]
requires = ["hatchling>=1.21.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["processor"]
# 仓库替代
[tool.uv]
index-url = "https://pypi.tuna.tsinghua.edu.cn/simple"