-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (72 loc) · 2.06 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (72 loc) · 2.06 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[tool.briefcase]
project_name = "Text Extractor"
bundle = "com.voxdroid"
version = "1.0.0"
url = "https://github.com/VoxDroid/Text-Extractor"
license.file = "LICENSE"
author = "VoxDroid"
author_email = "izeno.contact@gmail.com"
[tool.briefcase.app.textextractor]
formal_name = "TextExtractor"
description = "Text Extractor is a simple versatile GUI application that allows users to easily extract text from multiple files and consolidate it into a single output file."
long_description = """Text Extractor is a user-friendly GUI application designed to extract text from multiple files and consolidate it into a single text file. It supports various readable file formats, allowing users to easily select, manage, and save extracted content with custom filenames. This tool is particularly useful for students, researchers, or anyone needing to gather information from multiple sources efficiently."""
icon = "assets/icons/TextExtractor"
sources = [
"src/textextractor",
]
test_sources = [
"tests",
]
requires = [
"pyqt6",
"qtawesome",
"requests",
"packaging"
]
test_requires = [
]
[tool.briefcase.app.textextractor.macOS]
universal_build = true
requires = [
]
[tool.briefcase.app.textextractor.linux]
requires = [
]
[tool.briefcase.app.textextractor.linux.system.debian]
system_requires = [
]
system_runtime_requires = [
]
[tool.briefcase.app.textextractor.linux.system.rhel]
system_requires = [
]
system_runtime_requires = [
]
[tool.briefcase.app.textextractor.linux.system.suse]
system_requires = [
]
system_runtime_requires = [
]
[tool.briefcase.app.textextractor.linux.system.arch]
system_requires = [
]
system_runtime_requires = [
]
[tool.briefcase.app.textextractor.linux.flatpak]
flatpak_runtime = "org.freedesktop.Platform"
flatpak_runtime_version = "24.08"
flatpak_sdk = "org.freedesktop.Sdk"
[tool.briefcase.app.textextractor.windows]
requires = [
]
# Mobile deployments
[tool.briefcase.app.textextractor.iOS]
requires = [
]
[tool.briefcase.app.textextractor.android]
requires = [
]
# Web deployments
[tool.briefcase.app.textextractor.web]
requires = [
]