forked from Andereoo/TkinterWeb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpreparewheels.py
166 lines (141 loc) · 6.58 KB
/
preparewheels.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
### This script will generate a universal wheel, a universal sdist, and platform-specific wheels for TkinterWeb
### It's a pretty messy solution but makes it possible to only bundle only the tkhtml binary needed in each platform-specific wheel
### This avoids the need to have a seperate copy of the repository for each platform
import os, shutil, sys
import subprocess
import re
ROOT_PATH = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
WHEELS_ROOT_PATH = os.path.join(ROOT_PATH, "wheels")
DIST_ROOT_PATH = os.path.join(ROOT_PATH, "dist")
EGG_ROOT_PATH = os.path.join(ROOT_PATH, "tkinterweb.egg-info")
TKINTERWEB_ROOT_PATH = os.path.join(ROOT_PATH, "tkinterweb")
TKINTERWEB_NEW_ROOT_PATH = os.path.join(WHEELS_ROOT_PATH, "tkinterweb_")
TKHTML_ROOT_PATH = os.path.join(TKINTERWEB_ROOT_PATH, "tkhtml")
README_PATH = os.path.join(ROOT_PATH, "README.md")
TKHTML_SUBFOLDER_NAME = "binaries"
manifest_in_contents = "recursive-include tkinterweb/tkhtml *"
setup_py_contents = """ # The actual setup.py file in this directory is the one used for the universal wheel
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
def get_platname():
return "{}"
setup(
name="tkinterweb",
version="3.24.6",
description="HTML/CSS viewer for Tkinter",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Andereoo/TkinterWeb",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"License :: Freeware",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
],
keywords="tkinter, Tkinter, tkhtml, Tkhtml, Tk, HTML, CSS, webbrowser",
packages=find_packages(),
include_package_data=True,
install_requires=["pillow"],
options={{
"bdist_wheel": {{
"plat_name": get_platname(),
}},
}},
)
"""
existing_folders = []
if os.path.exists(WHEELS_ROOT_PATH):
existing_folders.append(WHEELS_ROOT_PATH)
if os.path.exists(DIST_ROOT_PATH):
existing_folders.append(DIST_ROOT_PATH)
if os.path.exists(EGG_ROOT_PATH):
existing_folders.append(EGG_ROOT_PATH)
if existing_folders:
should_continue = input("The following directories already exist:\n {} \nRemove and continue (Y/N)? ".format("\n ".join(existing_folders)))
if should_continue.upper() == "Y":
print()
for path in existing_folders:
print(f"Removing {path}")
shutil.rmtree(path)
else:
print("Cancelling")
exit()
print()
### Create a wheel for each supported platform
tkhtml_folders = {}
for f in os.scandir(TKHTML_ROOT_PATH):
if f.is_dir():
tkhtml_folders[f.name] = f.path
def run_shell(*args, cwd=ROOT_PATH, is_wheel=False):
p = subprocess.Popen(args, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
out = out.decode('ascii')
if is_wheel and "Successful" in out:
print("success!\n")
else:
print(f"\n{out}")
if err:
err = err.decode('ascii').replace("\n\n", "\n") # For some reason some errors have tons of blank space
print(f"Error: {err}", file=sys.stderr)
def copyfolder(src, dst, keep, ignore):
os.mkdir(dst)
for path, directories, files in os.walk(src):
if os.path.basename(path) in ignore:
continue
for directory in directories:
if directory not in ignore:
directory_src_path = os.path.join(path, directory)
if directory == keep:
directory = TKHTML_SUBFOLDER_NAME
directory_dst_path = os.path.join(path.replace(src, dst), directory)
os.mkdir(directory_dst_path)
#copyfolder(directory_src_path, directory_dst_path, keep, ignore)
for file in files:
new_folder = path.replace(src, dst)
if os.path.basename(new_folder) == keep:
new_folder = os.path.join(os.path.dirname(new_folder), TKHTML_SUBFOLDER_NAME)
if file == "utilities.py":
with open(os.path.join(path, file), "r") as handle:
content = handle.read()
content = re.sub(r"# Universal sdist((.|\n)*?)# Platform-specific wheel", "# Platform-specific wheel", content, re.MULTILINE) # Remove code for universal sdist
# re.sub(r"# Platform-specific wheel((.|\n)*?)\n\n", "", s, re.MULTILINE) # Remove code for platform-specific wheels
with open(os.path.join(new_folder, file), "w+") as handle:
handle.write(content)
else:
shutil.copy2(os.path.join(path, file), new_folder)
print(f"Using source directory {TKINTERWEB_ROOT_PATH}")
print("Found {} supported platforms: {}\n".format(len(tkhtml_folders), ", ".join(tkhtml_folders)))
wheel_folders_to_copy = []
os.mkdir(WHEELS_ROOT_PATH)
for folder in tkhtml_folders:
folders = list(tkhtml_folders.keys())
folders.remove(folder)
folder_path = TKINTERWEB_NEW_ROOT_PATH + folder
os.mkdir(folder_path)
print(f"Generating {folder_path}")
copyfolder(TKINTERWEB_ROOT_PATH, os.path.join(folder_path, os.path.basename(TKINTERWEB_ROOT_PATH)), folder, folders)
setup_path = os.path.join(folder_path, "setup.py")
with open(setup_path, "w+") as handle:
handle.write(setup_py_contents.format(folder))
manifest_path = os.path.join(folder_path, "MANIFEST.in")
with open(manifest_path, "w+") as handle:
handle.write(manifest_in_contents.format(folder))
shutil.copy2(README_PATH, folder_path)
print(f"Creating wheel for {folder}...", end="")
run_shell("python3", "-m", "build", "--no-isolation", "--wheel", cwd=folder_path, is_wheel=True)
wheel_folders_to_copy.append(os.path.join(folder_path, "dist"))
# Create a generic wheel and sdistprint
print(f"Creating wheel and sdist for {TKINTERWEB_ROOT_PATH}...", end="")
run_shell("python3", "-m", "build", "--no-isolation", is_wheel=True)
# Copy all wheels to the main dist folder
print(f"Copying wheels to {DIST_ROOT_PATH}\n")
for folder in wheel_folders_to_copy:
for wheel in os.listdir(folder):
shutil.copy2(os.path.join(folder, wheel), os.path.join(DIST_ROOT_PATH, wheel))