-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 985 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 985 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "markitdowngui"
version = "0.1.0"
description = "A GUI wrapper for MarkItDown to convert files to Markdown via drag-and-drop."
authors = [{name = "imadreamerboy", email = "jonas@imadreamerboy.com"}]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"markitdown[az-doc-intel,docx,pdf,pptx,xls,xlsx]==0.1.5",
"pypdfium2",
"pytesseract",
"pyside6>=6.8.2.1",
"pyside6-fluent-widgets>=1.11.0",
]
[project.urls]
Homepage = "https://github.com/imadreamerboy/markitdowngui"
Repository = "https://github.com/imadreamerboy/markitdowngui"
[tool.setuptools.packages.find]
include = ["markitdowngui"]
[project.optional-dependencies]
dev = [
"markitdowngui[test]",
"pyinstaller",
]
test = [
"pytest",
"pytest-mock",
]
[tool.pytest.ini_options]
pythonpath = [
"."
]