-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup_maps_3.py
66 lines (60 loc) · 2.77 KB
/
setup_maps_3.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
from setuptools import setup
from setuptools.command.install import install
import os, shutil, platform, sys
package = "uniquebible"
# https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/
setup(
name=f"{package}_maps_3",
version="0.0.3",
python_requires=">=3.8, <3.13",
description="Map images for UniqueBible App. Read more at https://github.com/eliranwong/UniqueBible",
long_description="Map images for UniqueBible App. Read more at https://github.com/eliranwong/UniqueBible",
author="Eliran Wong",
author_email="[email protected]",
packages=[
#f"{package}.htmlResources.images",
#f"{package}.htmlResources.images.exlbl", # size too large
f"{package}.htmlResources.images.exlbl_largeHD_1", # size too large
#f"{package}.htmlResources.images.exlbl_large", # size too large
],
package_data={
#f"{package}.htmlResources.images": ["*.*"],
#f"{package}.htmlResources.images.exlbl": ["*.*"], # size too large
f"{package}.htmlResources.images.exlbl_largeHD_1": ["*.*"], # size too large
#f"{package}.htmlResources.images.exlbl_large": ["*.*"], # size too large
},
license="GNU General Public License (GPL)",
#install_requires=[],
#extras_require={},
#entry_points={},
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',
],
)