-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 959 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (45 loc) · 959 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
43
44
45
46
47
48
49
50
[project]
name = "any2screen"
version = "0.1.0"
description = "Document conversion toolkit for mobile-friendly HTML, PDF, Markdown, and long-image outputs."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"markdown-it-py>=3.0.0",
"mdit-py-plugins>=0.4.0",
"linkify-it-py>=2.0.0",
"weasyprint>=62.0",
"playwright>=1.40.0",
"python-docx>=1.1.0",
"PyPDF2>=3.0.0",
"msoffcrypto-tool>=5.4.0",
"cairosvg>=2.9.0",
]
[project.optional-dependencies]
watch = [
"watchdog>=4.0.0",
]
web = [
"fastapi>=0.111.0",
"python-multipart>=0.0.20",
"uvicorn[standard]>=0.30.0",
]
[project.scripts]
any2screen = "cli:main"
[tool.uv]
package = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
py-modules = [
"any2html_cli",
"cli",
"command_registry",
"convert_cli",
"doc2md",
"html2screen_cli",
"pipeline",
"preview",
"preview_cli",
"web_cli",
]