-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
609 lines (598 loc) · 43.3 KB
/
setup.py
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
from setuptools import setup
from setuptools.command.install import install
import os, shutil, platform, sys
# package name
package_name_0 = os.path.join("package_name.txt")
with open(package_name_0, "r", encoding="utf-8") as fileObj:
package = fileObj.read()
package_name_1 = os.path.join(package, "package_name.txt") # package readme
shutil.copy(package_name_0, package_name_1)
# delete old shortcut files
apps = {
"uniquebible": ("UniqueBible", "UniqueBible App"),
}
appName, appFullName = apps[package]
shortcutFiles = (f"{appName}.bat", f"{appName}.command", f"{appName}.desktop")
for shortcutFile in shortcutFiles:
shortcut = os.path.join(package, shortcutFile)
if os.path.isfile(shortcut):
os.remove(shortcut)
# update package readme
latest_readme = "README.md" # github repository readme
package_readme = os.path.join(package, "README.md") # package readme
shutil.copy(latest_readme, package_readme)
with open(package_readme, "r", encoding="utf-8") as fileObj:
long_description = fileObj.read()
# get required packages
install_requires = [
"uniquebible_maps_1==0.0.3",
"uniquebible_maps_2==0.0.3",
"uniquebible_maps_3==0.0.3",
"uniquebible_maps_4==0.0.3",
"uniquebible_maps_5==0.0.3",
]
with open(os.path.join(package, "requirements.txt"), "r") as fileObj:
for line in fileObj.readlines():
mod = line.strip()
if mod:
install_requires.append(mod)
# make sure config.py is empty
open(os.path.join(package, "config.py"), "w").close()
# https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/
setup(
name=package,
version="0.1.83",
python_requires=">=3.8, <3.13",
description=f"UniqueBible App is a cross-platform & offline bible application, integrated with high-quality resources and unique features. Developers: Eliran Wong and Oliver Tseng",
long_description=long_description,
author="Eliran Wong",
author_email="[email protected]",
packages=[
package,
f"{package}.video",
#f"{package}.nltk_data", # size too large
#f"{package}.nltk_data.corpora", # size too large
f"{package}.gui",
f"{package}.db",
f"{package}.terminal_history",
f"{package}.terminal_mode",
f"{package}.terminal_mode.developers",
f"{package}.terminal_mode.how_to",
#f"{package}.screenshots",
f"{package}.install",
#f"{package}.testing",
#f"{package}.tests",
f"{package}.webstorage",
f"{package}.webstorage.Cache",
f"{package}.webstorage.Downloads",
f"{package}.webstorage.PersistentStorage",
f"{package}.htmlResources",
f"{package}.htmlResources.material",
f"{package}.htmlResources.js",
f"{package}.htmlResources.icons",
f"{package}.htmlResources.css",
f"{package}.htmlResources.lib",
f"{package}.htmlResources.buttons",
f"{package}.htmlResources.fonts",
f"{package}.htmlResources.images",
#f"{package}.htmlResources.images.exlbl", # size too large
#f"{package}.htmlResources.images.exlbl_largeHD", # size too large
#f"{package}.htmlResources.images.exlbl_large", # size too large
f"{package}.lang",
f"{package}.workspace",
#f"{package}.installation",
f"{package}.selectedVerses",
#f"{package}.llama_index", # size too large
#f"{package}.llama_index.KJV_md_index", # size too large
#f"{package}.llama_index.NET_md_index", # size too large
f"{package}.notes",
f"{package}.marvelData",
f"{package}.marvelData.docx",
f"{package}.marvelData.statistics",
f"{package}.marvelData.pdf",
f"{package}.marvelData.books",
f"{package}.marvelData.indexes",
f"{package}.marvelData.indexes.bible",
f"{package}.marvelData.bibles",
f"{package}.marvelData.lexicons",
f"{package}.marvelData.chats",
f"{package}.marvelData.xref",
f"{package}.marvelData.data",
f"{package}.marvelData.epub",
f"{package}.marvelData.commentaries",
f"{package}.marvelData.devotionals",
f"{package}.util",
f"{package}.macros",
f"{package}.music",
f"{package}.audio",
f"{package}.temp",
f"{package}.startup",
f"{package}.thirdParty",
f"{package}.thirdParty.dictionaries",
f"{package}.import",
f"{package}.tools",
f"{package}.plugins",
f"{package}.plugins.layout",
f"{package}.plugins.menu",
f"{package}.plugins.menu.ePubViewer",
f"{package}.plugins.menu.ePubViewer.polyfills",
f"{package}.plugins.menu.ePubViewer.libs",
f"{package}.plugins.menu.ToDo",
f"{package}.plugins.menu.Bible_Data",
f"{package}.plugins.menu.GoogleDriveUtility",
f"{package}.plugins.text_editor",
f"{package}.plugins.terminal",
f"{package}.plugins.language",
f"{package}.plugins.shutdown",
f"{package}.plugins.event",
f"{package}.plugins.config",
f"{package}.plugins.chatGPT",
f"{package}.plugins.context",
f"{package}.plugins.context.Strongs2csv",
f"{package}.plugins.startup",
f"{package}.htmlResources.material.social.travel_explore.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.file.folder_open.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.video_camera_front.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.checklist_rtl.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.file.folder.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.play_circle_outline.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.maps.local_parking.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.auto_fix_high.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.queue_music.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.maps.local_printshop.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.fact_check.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.format_clear.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.file.grid_view.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.communication.swap_calls.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.speed.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.maps.local_library.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.volume_up.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.format_size.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.communication.comment.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.view_day.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.navigation.unfold_more.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.ads_click.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.drag_indicator.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.stop_circle.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.superscript.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.notification.more.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.description.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.flash_off.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.expand.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.playlist_add_circle.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.schema.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.align_horizontal_right.materialicons.48dp.2x",
f"{package}.htmlResources.material.hardware.smart_toy.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.toggle.toggle_off.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.places.all_inclusive.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.edit_note.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.toggle.toggle_on.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.content.bolt.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.device.wallpaper.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.format_align_center.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.assignment.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.open_in_full.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.content.stacked_bar_chart.materialiconsround.18dp.2x",
f"{package}.htmlResources.material.editor.format_color_fill.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.skip_next.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.question_answer.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.social.male.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.maps.layers.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.notification.sync_disabled.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.translate.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.zoom_in.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.home.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.tune.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.horizontal_split.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.hardware.browser_updated.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.social.groups.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.account_balance.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.find_in_page.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.communication.list_alt.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.device.widgets.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.communication.stay_current_portrait.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.volume_off.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.device.sim_card_download.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.playlist_add_check.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.social.share.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.help_outline.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.insert_photo.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.format_color_text.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.work.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.format_underlined.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.content.add_circle_outline.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.insert_link.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.file.drive_file_move.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.skip_previous.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.content.inventory_2.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.device.reviews.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.content.remove_circle_outline.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.notification.sync.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.format_italic.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.file.workspaces.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.view_column.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.format_align_left.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.add_photo_alternate.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.record_voice_over.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.maps.pin_drop.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.open_in_new.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.done_all.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.play_circle.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.content.save_as.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.picture_as_pdf.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.remove_done.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.pause_circle.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.file.file_open.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.flare.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.maps.rate_review.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.social.female.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.playlist_add.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.device.note_alt.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.auto_awesome_motion.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.auto_fix_off.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.format_align_right.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.view_timeline.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.communication.stay_current_landscape.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.interpreter_mode.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.file.drive_file_rename_outline.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.post_add.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.communication.import_export.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.space_dashboard.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.switch_access_shortcut_add.materialiconssharp.48dp.2x",
f"{package}.htmlResources.material.action.preview.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.auto_stories.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.content.save.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.looks_3.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.auto_fix_normal.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.edit.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.navigation.more_vert.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.text_increase.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.hardware.keyboard_return.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.maps.layers_clear.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.token.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.subscript.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.flash_auto.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.highlight_alt.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.title.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.history.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.compare.materialicons.48dp.2x",
f"{package}.htmlResources.material.action.abc.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.contrast.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.navigate_before.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.hardware.gamepad.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.table_rows.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.note_add.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.text_decrease.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.navigation.arrow_back_ios.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.format_list_numbered.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.settings.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.communication.cancel_presentation.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.communication.email.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.switch_access_shortcut.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.content.add_link.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.auto_awesome.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.thumb_up_off_alt.materialicons.48dp.2x",
f"{package}.htmlResources.material.action.hide_source.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.navigation.arrow_forward_ios.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.fit_screen.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.device.mobiledata_off.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.file_present.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.filter_alt.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.format_bold.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.subtitles.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.content.dynamic_feed.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.subtitles_off.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.compare_arrows.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.language.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.format_align_justify.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.navigate_next.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.book.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.calendar_month.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.aspect_ratio.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.navigation.refresh.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.terminal.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.maps.diamond.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.search.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.av.video_settings.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.action.addchart.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.image.wb_sunny.materialiconsoutlined.48dp.2x",
f"{package}.htmlResources.material.editor.highlight.materialiconsoutlined.48dp.2x",
],
package_data={
package: ["*.*"],
f"{package}.video": ["*.*"],
#f"{package}.nltk_data": ["*.*"], # size too large
#f"{package}.nltk_data.corpora": ["*.*"], # size too large
f"{package}.gui": ["*.*"],
f"{package}.db": ["*.*"],
f"{package}.terminal_history": ["*.*"],
f"{package}.terminal_mode": ["*.*"],
f"{package}.terminal_mode.developers": ["*.*"],
f"{package}.terminal_mode.how_to": ["*.*"],
#f"{package}.screenshots": ["*.*"],
f"{package}.install": ["*.*"],
#f"{package}.testing": ["*.*"],
#f"{package}.tests": ["*.*"],
f"{package}.webstorage": ["*.*"],
f"{package}.webstorage.Cache": ["*.*"],
f"{package}.webstorage.Downloads": ["*.*"],
f"{package}.webstorage.PersistentStorage": ["*.*"],
f"{package}.htmlResources": ["*.*"],
f"{package}.htmlResources.material": ["*.*"],
f"{package}.htmlResources.js": ["*.*"],
f"{package}.htmlResources.icons": ["*.*"],
f"{package}.htmlResources.css": ["*.*"],
f"{package}.htmlResources.lib": ["*.*"],
f"{package}.htmlResources.buttons": ["*.*"],
f"{package}.htmlResources.fonts": ["*.*"],
f"{package}.htmlResources.images": ["*.*"],
#f"{package}.htmlResources.images.exlbl": ["*.*"], # size too large
#f"{package}.htmlResources.images.exlbl_largeHD": ["*.*"], # size too large
#f"{package}.htmlResources.images.exlbl_large": ["*.*"], # size too large
f"{package}.lang": ["*.*"],
f"{package}.workspace": ["*.*"],
#f"{package}.installation": ["*.*"],
f"{package}.selectedVerses": ["*.*"],
#f"{package}.llama_index": ["*.*"], # size too large
#f"{package}.llama_index.KJV_md_index": ["*.*"], # size too large
#f"{package}.llama_index.NET_md_index": ["*.*"], # size too large
f"{package}.notes": ["*.*"],
f"{package}.marvelData": ["*.*"],
f"{package}.marvelData.docx": ["*.*"],
f"{package}.marvelData.statistics": ["*.*"],
f"{package}.marvelData.pdf": ["*.*"],
f"{package}.marvelData.books": ["*.*"],
f"{package}.marvelData.indexes": ["*.*"],
f"{package}.marvelData.indexes.bible": ["*.*"],
f"{package}.marvelData.bibles": ["*.*"],
f"{package}.marvelData.lexicons": ["*.*"],
f"{package}.marvelData.chats": ["*.*"],
f"{package}.marvelData.xref": ["*.*"],
f"{package}.marvelData.data": ["*.*"],
f"{package}.marvelData.epub": ["*.*"],
f"{package}.marvelData.commentaries": ["*.*"],
f"{package}.marvelData.devotionals": ["*.*"],
f"{package}.util": ["*.*"],
f"{package}.macros": ["*.*"],
f"{package}.music": ["*.*"],
f"{package}.audio": ["*.*"],
f"{package}.temp": ["*.*"],
f"{package}.startup": ["*.*"],
f"{package}.thirdParty": ["*.*"],
f"{package}.thirdParty.dictionaries": ["*.*"],
f"{package}.import": ["*.*"],
f"{package}.tools": ["*.*"],
f"{package}.plugins": ["*.*"],
f"{package}.plugins.layout": ["*.*"],
f"{package}.plugins.menu": ["*.*"],
f"{package}.plugins.menu.ePubViewer": ["*.*"],
f"{package}.plugins.menu.ePubViewer.polyfills": ["*.*"],
f"{package}.plugins.menu.ePubViewer.libs": ["*.*"],
f"{package}.plugins.menu.ToDo": ["*.*"],
f"{package}.plugins.menu.Bible_Data": ["*.*"],
f"{package}.plugins.menu.GoogleDriveUtility": ["*.*"],
f"{package}.plugins.text_editor": ["*.*"],
f"{package}.plugins.terminal": ["*.*"],
f"{package}.plugins.language": ["*.*"],
f"{package}.plugins.shutdown": ["*.*"],
f"{package}.plugins.event": ["*.*"],
f"{package}.plugins.config": ["*.*"],
f"{package}.plugins.chatGPT": ["*.*"],
f"{package}.plugins.context": ["*.*"],
f"{package}.plugins.context.Strongs2csv": ["*.*"],
f"{package}.plugins.startup": ["*.*"],
f"{package}.htmlResources.material.social.travel_explore.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.file.folder_open.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.video_camera_front.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.checklist_rtl.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.file.folder.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.play_circle_outline.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.maps.local_parking.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.auto_fix_high.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.queue_music.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.maps.local_printshop.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.fact_check.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_clear.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.file.grid_view.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.communication.swap_calls.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.speed.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.maps.local_library.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.volume_up.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_size.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.communication.comment.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.view_day.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.navigation.unfold_more.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.ads_click.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.drag_indicator.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.stop_circle.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.superscript.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.notification.more.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.description.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.flash_off.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.expand.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.playlist_add_circle.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.schema.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.align_horizontal_right.materialicons.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.hardware.smart_toy.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.toggle.toggle_off.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.places.all_inclusive.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.edit_note.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.toggle.toggle_on.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.content.bolt.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.device.wallpaper.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_align_center.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.assignment.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.open_in_full.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.content.stacked_bar_chart.materialiconsround.18dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_color_fill.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.skip_next.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.question_answer.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.social.male.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.maps.layers.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.notification.sync_disabled.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.translate.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.zoom_in.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.home.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.tune.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.horizontal_split.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.hardware.browser_updated.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.social.groups.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.account_balance.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.find_in_page.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.communication.list_alt.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.device.widgets.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.communication.stay_current_portrait.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.volume_off.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.device.sim_card_download.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.playlist_add_check.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.social.share.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.help_outline.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.insert_photo.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_color_text.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.work.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_underlined.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.content.add_circle_outline.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.insert_link.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.file.drive_file_move.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.skip_previous.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.content.inventory_2.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.device.reviews.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.content.remove_circle_outline.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.notification.sync.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_italic.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.file.workspaces.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.view_column.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_align_left.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.add_photo_alternate.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.record_voice_over.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.maps.pin_drop.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.open_in_new.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.done_all.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.play_circle.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.content.save_as.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.picture_as_pdf.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.remove_done.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.pause_circle.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.file.file_open.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.flare.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.maps.rate_review.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.social.female.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.playlist_add.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.device.note_alt.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.auto_awesome_motion.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.auto_fix_off.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_align_right.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.view_timeline.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.communication.stay_current_landscape.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.interpreter_mode.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.file.drive_file_rename_outline.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.post_add.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.communication.import_export.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.space_dashboard.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.switch_access_shortcut_add.materialiconssharp.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.preview.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.auto_stories.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.content.save.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.looks_3.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.auto_fix_normal.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.edit.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.navigation.more_vert.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.text_increase.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.hardware.keyboard_return.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.maps.layers_clear.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.token.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.subscript.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.flash_auto.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.highlight_alt.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.title.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.history.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.compare.materialicons.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.abc.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.contrast.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.navigate_before.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.hardware.gamepad.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.table_rows.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.note_add.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.text_decrease.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.navigation.arrow_back_ios.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_list_numbered.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.settings.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.communication.cancel_presentation.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.communication.email.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.switch_access_shortcut.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.content.add_link.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.auto_awesome.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.thumb_up_off_alt.materialicons.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.hide_source.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.navigation.arrow_forward_ios.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.fit_screen.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.device.mobiledata_off.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.file_present.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.filter_alt.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_bold.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.subtitles.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.content.dynamic_feed.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.subtitles_off.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.compare_arrows.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.language.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.format_align_justify.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.navigate_next.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.book.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.calendar_month.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.aspect_ratio.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.navigation.refresh.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.terminal.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.maps.diamond.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.search.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.av.video_settings.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.action.addchart.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.image.wb_sunny.materialiconsoutlined.48dp.2x": ["*.*"],
f"{package}.htmlResources.material.editor.highlight.materialiconsoutlined.48dp.2x": ["*.*"],
},
license="GNU General Public License (GPL)",
install_requires=install_requires,
extras_require={
'gui': ["PySide6"], # Dependencies for the gui module
},
entry_points={
"console_scripts": [
f"{package}={package}.uba:main",
f"ub={package}.uba:stream",
f"ubapi={package}.uba:api",
f"ubhttp={package}.uba:http",
f"ubssh={package}.uba:ssh",
f"ubtelnet={package}.uba:telnet",
f"ubterm={package}.uba:term",
],
},
keywords="bible scripture na28 bsha hebrew greek ai marvelbible biblebento uba uniquebible",
url="https://www.uniquebible.app/",
project_urls={
"Source": "https://github.com/eliranwong/UniqueBible",
"Tracker": "https://github.com/eliranwong/UniqueBible/issues",
"Documentation": "https://github.com/eliranwong/UniqueBible/wiki",
"Funding": "https://www.paypal.me/MarvelBible",
},
classifiers=[
# Reference: https://pypi.org/classifiers/
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production/Stable',
# Indicate who your project is intended for
'Intended Audience :: End Users/Desktop',
'Topic :: Utilities',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Build Tools',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'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',
],
)