forked from elliottzheng/NotebookLM2PPT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 952 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 952 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "notebooklm2ppt"
version = "0.6.4"
description = "将 PDF 转换为可编辑 PowerPoint 演示文稿的工具"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Elliott Zheng", email = "elliott.zheng@foxmail.com"},
]
dependencies = [
"PyMuPDF",
"numpy",
"requests",
"spire.presentation",
"python-pptx",
"pywin32; sys_platform == 'win32'",
"pywinauto; sys_platform == 'win32'",
"scikit-image",
"Pillow",
"windnd; sys_platform == 'win32'",
]
[project.urls]
Homepage = "https://github.com/elliottzheng/NotebookLM2PPT"
Repository = "https://github.com/elliottzheng/NotebookLM2PPT.git"
Issues = "https://github.com/elliottzheng/NotebookLM2PPT/issues"
[project.scripts]
notebooklm2ppt = "notebooklm2ppt.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["notebooklm2ppt"]