python-msilib 0.1.1__cp314-cp314t-win_amd64.whl → 0.3.0__cp314-cp314t-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of python-msilib might be problematic. Click here for more details.

msilib/text.py CHANGED
@@ -1,129 +1,292 @@
1
- import msilib,os;dirname=os.path.dirname(__file__)
1
+ import msilib, os
2
+
3
+ dirname = os.path.dirname(__file__)
2
4
 
3
5
  ActionText = [
4
- ('InstallValidate', 'Validating install', None),
5
- ('InstallFiles', 'Copying new files', 'File: [1], Directory: [9], Size: [6]'),
6
- ('InstallAdminPackage', 'Copying network install files', 'File: [1], Directory: [9], Size: [6]'),
7
- ('FileCost', 'Computing space requirements', None),
8
- ('CostInitialize', 'Computing space requirements', None),
9
- ('CostFinalize', 'Computing space requirements', None),
10
- ('CreateShortcuts', 'Creating shortcuts', 'Shortcut: [1]'),
11
- ('PublishComponents', 'Publishing Qualified Components', 'Component ID: [1], Qualifier: [2]'),
12
- ('PublishFeatures', 'Publishing Product Features', 'Feature: [1]'),
13
- ('PublishProduct', 'Publishing product information', None),
14
- ('RegisterClassInfo', 'Registering Class servers', 'Class Id: [1]'),
15
- ('RegisterExtensionInfo', 'Registering extension servers', 'Extension: [1]'),
16
- ('RegisterMIMEInfo', 'Registering MIME info', 'MIME Content Type: [1], Extension: [2]'),
17
- ('RegisterProgIdInfo', 'Registering program identifiers', 'ProgId: [1]'),
18
- ('AllocateRegistrySpace', 'Allocating registry space', 'Free space: [1]'),
19
- ('AppSearch', 'Searching for installed applications', 'Property: [1], Signature: [2]'),
20
- ('BindImage', 'Binding executables', 'File: [1]'),
21
- ('CCPSearch', 'Searching for qualifying products', None),
22
- ('CreateFolders', 'Creating folders', 'Folder: [1]'),
23
- ('DeleteServices', 'Deleting services', 'Service: [1]'),
24
- ('DuplicateFiles', 'Creating duplicate files', 'File: [1], Directory: [9], Size: [6]'),
25
- ('FindRelatedProducts', 'Searching for related applications', 'Found application: [1]'),
26
- ('InstallODBC', 'Installing ODBC components', None),
27
- ('InstallServices', 'Installing new services', 'Service: [2]'),
28
- ('LaunchConditions', 'Evaluating launch conditions', None),
29
- ('MigrateFeatureStates', 'Migrating feature states from related applications', 'Application: [1]'),
30
- ('MoveFiles', 'Moving files', 'File: [1], Directory: [9], Size: [6]'),
31
- ('PatchFiles', 'Patching files', 'File: [1], Directory: [2], Size: [3]'),
32
- ('ProcessComponents', 'Updating component registration', None),
33
- ('RegisterComPlus', 'Registering COM+ Applications and Components', 'AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}'),
34
- ('RegisterFonts', 'Registering fonts', 'Font: [1]'),
35
- ('RegisterProduct', 'Registering product', '[1]'),
36
- ('RegisterTypeLibraries', 'Registering type libraries', 'LibID: [1]'),
37
- ('RegisterUser', 'Registering user', '[1]'),
38
- ('RemoveDuplicateFiles', 'Removing duplicated files', 'File: [1], Directory: [9]'),
39
- ('RemoveEnvironmentStrings', 'Updating environment strings', 'Name: [1], Value: [2], Action [3]'),
40
- ('RemoveExistingProducts', 'Removing applications', 'Application: [1], Command line: [2]'),
41
- ('RemoveFiles', 'Removing files', 'File: [1], Directory: [9]'),
42
- ('RemoveFolders', 'Removing folders', 'Folder: [1]'),
43
- ('RemoveIniValues', 'Removing INI files entries', 'File: [1], Section: [2], Key: [3], Value: [4]'),
44
- ('RemoveODBC', 'Removing ODBC components', None),
45
- ('RemoveRegistryValues', 'Removing system registry values', 'Key: [1], Name: [2]'),
46
- ('RemoveShortcuts', 'Removing shortcuts', 'Shortcut: [1]'),
47
- ('RMCCPSearch', 'Searching for qualifying products', None),
48
- ('SelfRegModules', 'Registering modules', 'File: [1], Folder: [2]'),
49
- ('SelfUnregModules', 'Unregistering modules', 'File: [1], Folder: [2]'),
50
- ('SetODBCFolders', 'Initializing ODBC directories', None),
51
- ('StartServices', 'Starting services', 'Service: [1]'),
52
- ('StopServices', 'Stopping services', 'Service: [1]'),
53
- ('UnpublishComponents', 'Unpublishing Qualified Components', 'Component ID: [1], Qualifier: [2]'),
54
- ('UnpublishFeatures', 'Unpublishing Product Features', 'Feature: [1]'),
55
- ('UnregisterClassInfo', 'Unregister Class servers', 'Class Id: [1]'),
56
- ('UnregisterComPlus', 'Unregistering COM+ Applications and Components', 'AppId: [1]{{, AppType: [2]}}'),
57
- ('UnregisterExtensionInfo', 'Unregistering extension servers', 'Extension: [1]'),
58
- ('UnregisterFonts', 'Unregistering fonts', 'Font: [1]'),
59
- ('UnregisterMIMEInfo', 'Unregistering MIME info', 'MIME Content Type: [1], Extension: [2]'),
60
- ('UnregisterProgIdInfo', 'Unregistering program identifiers', 'ProgId: [1]'),
61
- ('UnregisterTypeLibraries', 'Unregistering type libraries', 'LibID: [1]'),
62
- ('WriteEnvironmentStrings', 'Updating environment strings', 'Name: [1], Value: [2], Action [3]'),
63
- ('WriteIniValues', 'Writing INI files values', 'File: [1], Section: [2], Key: [3], Value: [4]'),
64
- ('WriteRegistryValues', 'Writing system registry values', 'Key: [1], Name: [2], Value: [3]'),
65
- ('Advertise', 'Advertising application', None),
66
- ('GenerateScript', 'Generating script operations for action:', '[1]'),
67
- ('InstallSFPCatalogFile', 'Installing system catalog', 'File: [1], Dependencies: [2]'),
68
- ('MsiPublishAssemblies', 'Publishing assembly information', 'Application Context:[1], Assembly Name:[2]'),
69
- ('MsiUnpublishAssemblies', 'Unpublishing assembly information', 'Application Context:[1], Assembly Name:[2]'),
70
- ('Rollback', 'Rolling back action:', '[1]'),
71
- ('RollbackCleanup', 'Removing backup files', 'File: [1]'),
72
- ('UnmoveFiles', 'Removing moved files', 'File: [1], Directory: [9]'),
73
- ('UnpublishProduct', 'Unpublishing product information', None),
6
+ ("InstallValidate", "Validating install", None),
7
+ (
8
+ "InstallFiles",
9
+ "Copying new files",
10
+ "File: [1], Directory: [9], Size: [6]",
11
+ ),
12
+ (
13
+ "InstallAdminPackage",
14
+ "Copying network install files",
15
+ "File: [1], Directory: [9], Size: [6]",
16
+ ),
17
+ ("FileCost", "Computing space requirements", None),
18
+ ("CostInitialize", "Computing space requirements", None),
19
+ ("CostFinalize", "Computing space requirements", None),
20
+ ("CreateShortcuts", "Creating shortcuts", "Shortcut: [1]"),
21
+ (
22
+ "PublishComponents",
23
+ "Publishing Qualified Components",
24
+ "Component ID: [1], Qualifier: [2]",
25
+ ),
26
+ ("PublishFeatures", "Publishing Product Features", "Feature: [1]"),
27
+ ("PublishProduct", "Publishing product information", None),
28
+ ("RegisterClassInfo", "Registering Class servers", "Class Id: [1]"),
29
+ (
30
+ "RegisterExtensionInfo",
31
+ "Registering extension servers",
32
+ "Extension: [1]",
33
+ ),
34
+ (
35
+ "RegisterMIMEInfo",
36
+ "Registering MIME info",
37
+ "MIME Content Type: [1], Extension: [2]",
38
+ ),
39
+ ("RegisterProgIdInfo", "Registering program identifiers", "ProgId: [1]"),
40
+ ("AllocateRegistrySpace", "Allocating registry space", "Free space: [1]"),
41
+ (
42
+ "AppSearch",
43
+ "Searching for installed applications",
44
+ "Property: [1], Signature: [2]",
45
+ ),
46
+ ("BindImage", "Binding executables", "File: [1]"),
47
+ ("CCPSearch", "Searching for qualifying products", None),
48
+ ("CreateFolders", "Creating folders", "Folder: [1]"),
49
+ ("DeleteServices", "Deleting services", "Service: [1]"),
50
+ (
51
+ "DuplicateFiles",
52
+ "Creating duplicate files",
53
+ "File: [1], Directory: [9], Size: [6]",
54
+ ),
55
+ (
56
+ "FindRelatedProducts",
57
+ "Searching for related applications",
58
+ "Found application: [1]",
59
+ ),
60
+ ("InstallODBC", "Installing ODBC components", None),
61
+ ("InstallServices", "Installing new services", "Service: [2]"),
62
+ ("LaunchConditions", "Evaluating launch conditions", None),
63
+ (
64
+ "MigrateFeatureStates",
65
+ "Migrating feature states from related applications",
66
+ "Application: [1]",
67
+ ),
68
+ ("MoveFiles", "Moving files", "File: [1], Directory: [9], Size: [6]"),
69
+ ("PatchFiles", "Patching files", "File: [1], Directory: [2], Size: [3]"),
70
+ ("ProcessComponents", "Updating component registration", None),
71
+ (
72
+ "RegisterComPlus",
73
+ "Registering COM+ Applications and Components",
74
+ "AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}",
75
+ ),
76
+ ("RegisterFonts", "Registering fonts", "Font: [1]"),
77
+ ("RegisterProduct", "Registering product", "[1]"),
78
+ ("RegisterTypeLibraries", "Registering type libraries", "LibID: [1]"),
79
+ ("RegisterUser", "Registering user", "[1]"),
80
+ (
81
+ "RemoveDuplicateFiles",
82
+ "Removing duplicated files",
83
+ "File: [1], Directory: [9]",
84
+ ),
85
+ (
86
+ "RemoveEnvironmentStrings",
87
+ "Updating environment strings",
88
+ "Name: [1], Value: [2], Action [3]",
89
+ ),
90
+ (
91
+ "RemoveExistingProducts",
92
+ "Removing applications",
93
+ "Application: [1], Command line: [2]",
94
+ ),
95
+ ("RemoveFiles", "Removing files", "File: [1], Directory: [9]"),
96
+ ("RemoveFolders", "Removing folders", "Folder: [1]"),
97
+ (
98
+ "RemoveIniValues",
99
+ "Removing INI files entries",
100
+ "File: [1], Section: [2], Key: [3], Value: [4]",
101
+ ),
102
+ ("RemoveODBC", "Removing ODBC components", None),
103
+ (
104
+ "RemoveRegistryValues",
105
+ "Removing system registry values",
106
+ "Key: [1], Name: [2]",
107
+ ),
108
+ ("RemoveShortcuts", "Removing shortcuts", "Shortcut: [1]"),
109
+ ("RMCCPSearch", "Searching for qualifying products", None),
110
+ ("SelfRegModules", "Registering modules", "File: [1], Folder: [2]"),
111
+ ("SelfUnregModules", "Unregistering modules", "File: [1], Folder: [2]"),
112
+ ("SetODBCFolders", "Initializing ODBC directories", None),
113
+ ("StartServices", "Starting services", "Service: [1]"),
114
+ ("StopServices", "Stopping services", "Service: [1]"),
115
+ (
116
+ "UnpublishComponents",
117
+ "Unpublishing Qualified Components",
118
+ "Component ID: [1], Qualifier: [2]",
119
+ ),
120
+ ("UnpublishFeatures", "Unpublishing Product Features", "Feature: [1]"),
121
+ ("UnregisterClassInfo", "Unregister Class servers", "Class Id: [1]"),
122
+ (
123
+ "UnregisterComPlus",
124
+ "Unregistering COM+ Applications and Components",
125
+ "AppId: [1]{{, AppType: [2]}}",
126
+ ),
127
+ (
128
+ "UnregisterExtensionInfo",
129
+ "Unregistering extension servers",
130
+ "Extension: [1]",
131
+ ),
132
+ ("UnregisterFonts", "Unregistering fonts", "Font: [1]"),
133
+ (
134
+ "UnregisterMIMEInfo",
135
+ "Unregistering MIME info",
136
+ "MIME Content Type: [1], Extension: [2]",
137
+ ),
138
+ (
139
+ "UnregisterProgIdInfo",
140
+ "Unregistering program identifiers",
141
+ "ProgId: [1]",
142
+ ),
143
+ ("UnregisterTypeLibraries", "Unregistering type libraries", "LibID: [1]"),
144
+ (
145
+ "WriteEnvironmentStrings",
146
+ "Updating environment strings",
147
+ "Name: [1], Value: [2], Action [3]",
148
+ ),
149
+ (
150
+ "WriteIniValues",
151
+ "Writing INI files values",
152
+ "File: [1], Section: [2], Key: [3], Value: [4]",
153
+ ),
154
+ (
155
+ "WriteRegistryValues",
156
+ "Writing system registry values",
157
+ "Key: [1], Name: [2], Value: [3]",
158
+ ),
159
+ ("Advertise", "Advertising application", None),
160
+ ("GenerateScript", "Generating script operations for action:", "[1]"),
161
+ (
162
+ "InstallSFPCatalogFile",
163
+ "Installing system catalog",
164
+ "File: [1], Dependencies: [2]",
165
+ ),
166
+ (
167
+ "MsiPublishAssemblies",
168
+ "Publishing assembly information",
169
+ "Application Context:[1], Assembly Name:[2]",
170
+ ),
171
+ (
172
+ "MsiUnpublishAssemblies",
173
+ "Unpublishing assembly information",
174
+ "Application Context:[1], Assembly Name:[2]",
175
+ ),
176
+ ("Rollback", "Rolling back action:", "[1]"),
177
+ ("RollbackCleanup", "Removing backup files", "File: [1]"),
178
+ ("UnmoveFiles", "Removing moved files", "File: [1], Directory: [9]"),
179
+ ("UnpublishProduct", "Unpublishing product information", None),
74
180
  ]
75
181
 
76
182
  UIText = [
77
- ('AbsentPath', None),
78
- ('bytes', 'bytes'),
79
- ('GB', 'GB'),
80
- ('KB', 'KB'),
81
- ('MB', 'MB'),
82
- ('MenuAbsent', 'Entire feature will be unavailable'),
83
- ('MenuAdvertise', 'Feature will be installed when required'),
84
- ('MenuAllCD', 'Entire feature will be installed to run from CD'),
85
- ('MenuAllLocal', 'Entire feature will be installed on local hard drive'),
86
- ('MenuAllNetwork', 'Entire feature will be installed to run from network'),
87
- ('MenuCD', 'Will be installed to run from CD'),
88
- ('MenuLocal', 'Will be installed on local hard drive'),
89
- ('MenuNetwork', 'Will be installed to run from network'),
90
- ('ScriptInProgress', 'Gathering required information...'),
91
- ('SelAbsentAbsent', 'This feature will remain uninstalled'),
92
- ('SelAbsentAdvertise', 'This feature will be set to be installed when required'),
93
- ('SelAbsentCD', 'This feature will be installed to run from CD'),
94
- ('SelAbsentLocal', 'This feature will be installed on the local hard drive'),
95
- ('SelAbsentNetwork', 'This feature will be installed to run from the network'),
96
- ('SelAdvertiseAbsent', 'This feature will become unavailable'),
97
- ('SelAdvertiseAdvertise', 'Will be installed when required'),
98
- ('SelAdvertiseCD', 'This feature will be available to run from CD'),
99
- ('SelAdvertiseLocal', 'This feature will be installed on your local hard drive'),
100
- ('SelAdvertiseNetwork', 'This feature will be available to run from the network'),
101
- ('SelCDAbsent', "This feature will be uninstalled completely, you won't be able to run it from CD"),
102
- ('SelCDAdvertise', 'This feature will change from run from CD state to set to be installed when required'),
103
- ('SelCDCD', 'This feature will remain to be run from CD'),
104
- ('SelCDLocal', 'This feature will change from run from CD state to be installed on the local hard drive'),
105
- ('SelChildCostNeg', 'This feature frees up [1] on your hard drive.'),
106
- ('SelChildCostPos', 'This feature requires [1] on your hard drive.'),
107
- ('SelCostPending', 'Compiling cost for this feature...'),
108
- ('SelLocalAbsent', 'This feature will be completely removed'),
109
- ('SelLocalAdvertise', 'This feature will be removed from your local hard drive, but will be set to be installed when required'),
110
- ('SelLocalCD', 'This feature will be removed from your local hard drive, but will be still available to run from CD'),
111
- ('SelLocalLocal', 'This feature will remain on you local hard drive'),
112
- ('SelLocalNetwork', 'This feature will be removed from your local hard drive, but will be still available to run from the network'),
113
- ('SelNetworkAbsent', "This feature will be uninstalled completely, you won't be able to run it from the network"),
114
- ('SelNetworkAdvertise', 'This feature will change from run from network state to set to be installed when required'),
115
- ('SelNetworkLocal', 'This feature will change from run from network state to be installed on the local hard drive'),
116
- ('SelNetworkNetwork', 'This feature will remain to be run from the network'),
117
- ('SelParentCostNegNeg', 'This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.'),
118
- ('SelParentCostNegPos', 'This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.'),
119
- ('SelParentCostPosNeg', 'This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.'),
120
- ('SelParentCostPosPos', 'This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.'),
121
- ('TimeRemaining', 'Time remaining: {[1] minutes }{[2] seconds}'),
122
- ('VolumeCostAvailable', 'Available'),
123
- ('VolumeCostDifference', 'Difference'),
124
- ('VolumeCostRequired', 'Required'),
125
- ('VolumeCostSize', 'Disk Size'),
126
- ('VolumeCostVolume', 'Volume'),
183
+ ("AbsentPath", None),
184
+ ("bytes", "bytes"),
185
+ ("GB", "GB"),
186
+ ("KB", "KB"),
187
+ ("MB", "MB"),
188
+ ("MenuAbsent", "Entire feature will be unavailable"),
189
+ ("MenuAdvertise", "Feature will be installed when required"),
190
+ ("MenuAllCD", "Entire feature will be installed to run from CD"),
191
+ ("MenuAllLocal", "Entire feature will be installed on local hard drive"),
192
+ ("MenuAllNetwork", "Entire feature will be installed to run from network"),
193
+ ("MenuCD", "Will be installed to run from CD"),
194
+ ("MenuLocal", "Will be installed on local hard drive"),
195
+ ("MenuNetwork", "Will be installed to run from network"),
196
+ ("ScriptInProgress", "Gathering required information..."),
197
+ ("SelAbsentAbsent", "This feature will remain uninstalled"),
198
+ (
199
+ "SelAbsentAdvertise",
200
+ "This feature will be set to be installed when required",
201
+ ),
202
+ ("SelAbsentCD", "This feature will be installed to run from CD"),
203
+ (
204
+ "SelAbsentLocal",
205
+ "This feature will be installed on the local hard drive",
206
+ ),
207
+ (
208
+ "SelAbsentNetwork",
209
+ "This feature will be installed to run from the network",
210
+ ),
211
+ ("SelAdvertiseAbsent", "This feature will become unavailable"),
212
+ ("SelAdvertiseAdvertise", "Will be installed when required"),
213
+ ("SelAdvertiseCD", "This feature will be available to run from CD"),
214
+ (
215
+ "SelAdvertiseLocal",
216
+ "This feature will be installed on your local hard drive",
217
+ ),
218
+ (
219
+ "SelAdvertiseNetwork",
220
+ "This feature will be available to run from the network",
221
+ ),
222
+ (
223
+ "SelCDAbsent",
224
+ "This feature will be uninstalled completely, you won't be able to run it from CD",
225
+ ),
226
+ (
227
+ "SelCDAdvertise",
228
+ "This feature will change from run from CD state to set to be installed when required",
229
+ ),
230
+ ("SelCDCD", "This feature will remain to be run from CD"),
231
+ (
232
+ "SelCDLocal",
233
+ "This feature will change from run from CD state to be installed on the local hard drive",
234
+ ),
235
+ ("SelChildCostNeg", "This feature frees up [1] on your hard drive."),
236
+ ("SelChildCostPos", "This feature requires [1] on your hard drive."),
237
+ ("SelCostPending", "Compiling cost for this feature..."),
238
+ ("SelLocalAbsent", "This feature will be completely removed"),
239
+ (
240
+ "SelLocalAdvertise",
241
+ "This feature will be removed from your local hard drive, but will be set to be installed when required",
242
+ ),
243
+ (
244
+ "SelLocalCD",
245
+ "This feature will be removed from your local hard drive, but will be still available to run from CD",
246
+ ),
247
+ ("SelLocalLocal", "This feature will remain on you local hard drive"),
248
+ (
249
+ "SelLocalNetwork",
250
+ "This feature will be removed from your local hard drive, but will be still available to run from the network",
251
+ ),
252
+ (
253
+ "SelNetworkAbsent",
254
+ "This feature will be uninstalled completely, you won't be able to run it from the network",
255
+ ),
256
+ (
257
+ "SelNetworkAdvertise",
258
+ "This feature will change from run from network state to set to be installed when required",
259
+ ),
260
+ (
261
+ "SelNetworkLocal",
262
+ "This feature will change from run from network state to be installed on the local hard drive",
263
+ ),
264
+ (
265
+ "SelNetworkNetwork",
266
+ "This feature will remain to be run from the network",
267
+ ),
268
+ (
269
+ "SelParentCostNegNeg",
270
+ "This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.",
271
+ ),
272
+ (
273
+ "SelParentCostNegPos",
274
+ "This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.",
275
+ ),
276
+ (
277
+ "SelParentCostPosNeg",
278
+ "This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.",
279
+ ),
280
+ (
281
+ "SelParentCostPosPos",
282
+ "This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.",
283
+ ),
284
+ ("TimeRemaining", "Time remaining: {[1] minutes }{[2] seconds}"),
285
+ ("VolumeCostAvailable", "Available"),
286
+ ("VolumeCostDifference", "Difference"),
287
+ ("VolumeCostRequired", "Required"),
288
+ ("VolumeCostSize", "Disk Size"),
289
+ ("VolumeCostVolume", "Volume"),
127
290
  ]
128
291
 
129
- tables=['ActionText', 'UIText']
292
+ tables = ["ActionText", "UIText"]
@@ -0,0 +1,91 @@
1
+ Metadata-Version: 2.4
2
+ Name: python-msilib
3
+ Version: 0.3.0
4
+ Summary: Read and write Microsoft Installer files
5
+ Author-email: Marcelo Duarte <marcelotduarte@users.noreply.github.com>
6
+ License-Expression: PSF-2.0
7
+ Project-URL: Source, https://github.com/marcelotduarte/python-msilib
8
+ Keywords: msilib
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Natural Language :: English
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: C
14
+ Classifier: Programming Language :: Python
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3 :: Only
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Programming Language :: Python :: Free Threading :: 2 - Beta
20
+ Classifier: Topic :: Software Development :: Build Tools
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Classifier: Topic :: System :: Software Distribution
23
+ Classifier: Topic :: Utilities
24
+ Requires-Python: >=3.13
25
+ Description-Content-Type: text/markdown
26
+ License-File: LICENSE
27
+ Provides-Extra: dev
28
+ Requires-Dist: bump-my-version==1.2.3; extra == "dev"
29
+ Requires-Dist: cibuildwheel==3.2.0; extra == "dev"
30
+ Requires-Dist: pre-commit==4.3.0; extra == "dev"
31
+ Provides-Extra: tests
32
+ Requires-Dist: coverage==7.10.7; extra == "tests"
33
+ Requires-Dist: pytest==8.4.2; extra == "tests"
34
+ Dynamic: license-file
35
+
36
+ # python-msilib
37
+
38
+ Read and write Microsoft Installer files.
39
+
40
+ This library is legacy code borrowed from Python 3.12, intended to allow
41
+ cx_Freeze's bdist_msi command to continue working in Python 3.13 and 3.14.
42
+
43
+ [![PyPI version](https://img.shields.io/pypi/v/python-msilib)](https://pypi.org/project/python-msilib/)
44
+ [![PyPi Downloads](https://img.shields.io/pypi/dm/python-msilib)](https://pypistats.org/packages/python-msilib)
45
+ [![Conda Version](https://img.shields.io/conda/vn/conda-forge/python-msilib.svg)](https://anaconda.org/conda-forge/python-msilib)
46
+ [![Conda Downloads](https://anaconda.org/conda-forge/python-msilib/badges/downloads.svg)](https://anaconda.org/conda-forge/python-msilib)
47
+ [![Python](https://img.shields.io/pypi/pyversions/python-msilib)](https://www.python.org/)
48
+ [![Coverage](https://raw.githubusercontent.com/marcelotduarte/python-msilib/python-coverage-comment-action-data/badge.svg)](https://htmlpreview.github.io/?https://github.com/marcelotduarte/python-msilib/blob/python-coverage-comment-action-data/htmlcov/index.html)
49
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
50
+
51
+ ## Installation
52
+
53
+ Choose the Python package manager according to your system. See how the
54
+ installation works with the most common ones, which are pip and conda.
55
+
56
+ To install the latest version of `python-msilib` into a virtual environment:
57
+
58
+ ```
59
+ uv pip install --upgrade python-msilib
60
+ ```
61
+
62
+ If using pip:
63
+
64
+ ```
65
+ pip install --upgrade python-msilib
66
+ ```
67
+
68
+ From the conda-forge channel:
69
+
70
+ ```
71
+ conda install conda-forge::python-msilib
72
+ ```
73
+
74
+ To install the latest development build:
75
+
76
+ ```
77
+ uv pip uninstall python-msilib
78
+ uv pip install --extra-index-url https://test.pypi.org/simple/ python-msilib --prerelease=allow --index-strategy=unsafe-best-match
79
+ ```
80
+
81
+ If using pip:
82
+
83
+ ```
84
+ pip uninstall python-msilib
85
+ pip install --extra-index-url https://test.pypi.org/simple/ python-msilib --pre --no-cache
86
+ ```
87
+
88
+ ## Documentation
89
+
90
+ Please read the documentation at Python
91
+ [docs](https://docs.python.org/3.12/library/msilib.html).
@@ -0,0 +1,13 @@
1
+ msilib/__init__.py,sha256=tfVCYTeiYkKCJbvx92ETwc3Zi9EiX5Fp1K-cdcHe8pw,20135
2
+ msilib/_msi.c,sha256=cP6TFig0RdogyKNHzlIcVgRO6qv28Fe__Ydng6V39Gg,38691
3
+ msilib/_msi.cp314t-win_amd64.pyd,sha256=g5Ko2sqWArrvOLseZhRTyCm5jyVdJKP-HnMG_VOUlrI,30720
4
+ msilib/schema.py,sha256=_qBk8geNrA5Iup92yLvv8rgbx4EUSyA0BoPxqT6Q95U,128604
5
+ msilib/sequence.py,sha256=m1Yo_u1JGuGpHydHVNJFHvvXMZ3wBU-yHWq9px6ed1I,4526
6
+ msilib/text.py,sha256=Xd4CFDmgChKgIf6qsc6IFzT4YmJYXH8TqPm1W6GOW10,11039
7
+ msilib/include/_msi.h,sha256=sPtYIxAB6HS6K3_MWHpcd639whVvTqt78Pumt77l_gI,20929
8
+ msilib/include/pythoncapi_compat.h,sha256=ntwNXFRDLa7FFJ1dVrlBRK0S_ms8aKD7t1XXoN6u4Bo,73222
9
+ python_msilib-0.3.0.dist-info/licenses/LICENSE,sha256=Wju9Q0A41nBaSfjgklLmLoONJJJSYQD8agr81R5HUnI,2584
10
+ python_msilib-0.3.0.dist-info/METADATA,sha256=xfVSfTXvFp-ey3k2kyySW2iTy5sRch7f4PCBtj-WIhk,3652
11
+ python_msilib-0.3.0.dist-info/WHEEL,sha256=IxxXYqBIlKEzFy9ulBJ928Gdqg6XQ3DHti4avqq3myk,102
12
+ python_msilib-0.3.0.dist-info/top_level.txt,sha256=reGDwqhWKgUpH6z4VDR3W4MUnrUixkQv8pFZxMzH4Es,7
13
+ python_msilib-0.3.0.dist-info/RECORD,,
@@ -1,39 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: python-msilib
3
- Version: 0.1.1
4
- Summary: Read and write Microsoft Installer files
5
- Author-email: Marcelo Duarte <marcelotduarte@users.noreply.github.com>
6
- License-Expression: PSF-2.0
7
- Project-URL: Source, https://github.com/marcelotduarte/python-msilib
8
- Keywords: msilib
9
- Classifier: Development Status :: 5 - Production/Stable
10
- Classifier: Intended Audience :: Developers
11
- Classifier: Natural Language :: English
12
- Classifier: Operating System :: OS Independent
13
- Classifier: Programming Language :: C
14
- Classifier: Programming Language :: Python
15
- Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3 :: Only
17
- Classifier: Programming Language :: Python :: 3.13
18
- Classifier: Programming Language :: Python :: 3.14
19
- Classifier: Topic :: Software Development :: Build Tools
20
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
- Classifier: Topic :: System :: Software Distribution
22
- Classifier: Topic :: Utilities
23
- Requires-Python: >=3.13
24
- Description-Content-Type: text/markdown
25
- License-File: LICENSE
26
- Provides-Extra: dev
27
- Requires-Dist: bump-my-version==1.2.3; extra == "dev"
28
- Requires-Dist: cibuildwheel==3.2.0; extra == "dev"
29
- Requires-Dist: pre-commit==4.3.0; extra == "dev"
30
- Provides-Extra: tests
31
- Requires-Dist: coverage==7.10.7; extra == "tests"
32
- Requires-Dist: pytest==8.4.2; extra == "tests"
33
- Requires-Dist: pluggy==1.6.0; extra == "tests"
34
- Requires-Dist: pytest-mock==3.15.1; extra == "tests"
35
- Requires-Dist: pytest-timeout==2.4.0; extra == "tests"
36
- Requires-Dist: pytest-xdist==3.8.0; extra == "tests"
37
- Dynamic: license-file
38
-
39
- # python-msilib
@@ -1,13 +0,0 @@
1
- msilib/__init__.py,sha256=Mt08K7p6Yz3oYqDXqBHCVdd828b16Q-_8schJlsb5_c,18104
2
- msilib/_msi.c,sha256=7KrJ0fo2tIYu8wj0oF63YlX3At0kyl61RaFjpDq0NTw,38180
3
- msilib/_msi.cp314t-win_amd64.pyd,sha256=EpxDSPMk4xR_L8RC0R-9VuAp9DJZgOY7mcvxUyc9I28,30720
4
- msilib/schema.py,sha256=-_goRUiLvin7DU_FVo3vYzPzW-AlragCvshtVtGEry8,82586
5
- msilib/sequence.py,sha256=Z0Nn1IOMqO0wHVVVLHrNT4c5fyz38N66b7XFHI7KQVU,4055
6
- msilib/text.py,sha256=DG0D4CzBgr-RLhIH9xCA2P4iLEN7axphLL-7UaFZyjU,9147
7
- msilib/include/_msi.h,sha256=X6QW6wXdC0AMa3DkXPQ1N-a0vSb20jbam1elN0q90v4,18905
8
- msilib/include/pythoncapi_compat.h,sha256=xReZ1yVIyHzdoO05n4XKf9iNLqFfDF1WjWV2YtQdREo,72302
9
- python_msilib-0.1.1.dist-info/licenses/LICENSE,sha256=Wju9Q0A41nBaSfjgklLmLoONJJJSYQD8agr81R5HUnI,2584
10
- python_msilib-0.1.1.dist-info/METADATA,sha256=pGsYdVizDXk9ubMmpI3PAtz3YrmnR2EgL2bsZP15FzA,1645
11
- python_msilib-0.1.1.dist-info/WHEEL,sha256=IxxXYqBIlKEzFy9ulBJ928Gdqg6XQ3DHti4avqq3myk,102
12
- python_msilib-0.1.1.dist-info/top_level.txt,sha256=reGDwqhWKgUpH6z4VDR3W4MUnrUixkQv8pFZxMzH4Es,7
13
- python_msilib-0.1.1.dist-info/RECORD,,