-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 918 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (32 loc) · 918 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
[project]
name = "office-converter-all-in-one"
version = "1.0.0"
description = "Offline Windows GUI for Word, PDF and image conversion tasks."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Office Converter contributors" }
]
keywords = ["office", "pdf", "docx", "converter", "tkinter", "windows"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business",
"Topic :: Utilities"
]
dependencies = [
"pywin32>=306; platform_system == 'Windows'",
"pymupdf>=1.23",
"pypdf>=4.0",
"pillow>=10.0",
"pdf2docx>=0.5.8"
]
[project.optional-dependencies]
build = ["pyinstaller>=6.0"]
[tool.ruff]
line-length = 120