forked from ssine/pptx2md
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 820 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
38
39
40
41
42
[tool.poetry]
name = "pptx2md"
version = "2.0.6"
description = "This package converts pptx to markdown"
repository = "https://github.com/ssine/pptx2md"
authors = ["Liu Siyao <liu.siyao@qq.com>"]
license = "MIT Licence"
[tool.poetry.scripts]
pptx2md = "pptx2md.__main__:main"
[tool.poetry.dependencies]
python = ">=3.10,<4"
python-pptx = ">=0.6.18"
rapidfuzz = ">=0.10.0"
Pillow = ">=6.0.0"
tqdm = ">=4"
pydantic = "^2.9.2"
scipy = "^1.14.1"
numpy = "^2.1.3"
[tool.poetry.group.dev.dependencies]
yapf = "^0.43.0"
isort = {version = ">=5.0.0"}
pycln = "^2.4.0"
wand = "^0.6.13"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.yapf]
based_on_style = "google"
column_limit = 120
[tool.isort]
profile = "hug"
line_length = 120
[tool.pycln]
path = "pptx2md/"
all = true