-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.31 KB
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
51
52
53
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pdf2wordx"
version = "2.1.1"
description = "PDF to DOCX converter with UI/tkinter"
readme = "README.md"
requires-python = ">=3.8,<3.13"
license = { file = "LICENSE" }
authors = [
{ name = "Tutos Rive", email = "tutosriveorg@gmail.com" }
]
dependencies = [
"chromologger>=0.1.4",
"pdf2docx>=0.5.8"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Office Suites"
]
[project.urls]
Homepage = "https://tutosrive.github.io/pdf2wordx/"
Repository = "https://github.com/tutosrive/pdf2wordx/"
YouTube = "https://www.youtube.com/@tutosrive"
[tool.setuptools]
packages = ["pdf2wordx"]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.package-data]
pdf2wordx = [
"*.ico",
"files/*.py",
"files/info/*",
]
[project.scripts]
pdf2wordx = "pdf2wordx._pdf2wordx:run"