@@ -176,7 +176,7 @@ class bdist_wheel(Command):
176176 "plat-name=" ,
177177 "p" ,
178178 "platform name to embed in generated filenames "
179- f"( default: { get_platform (None )} ) " ,
179+ f"[ default: { get_platform (None )} ] " ,
180180 ),
181181 (
182182 "keep-temp" ,
@@ -189,7 +189,7 @@ class bdist_wheel(Command):
189189 (
190190 "relative" ,
191191 None ,
192- "build the archive using relative paths ( default: false) " ,
192+ "build the archive using relative paths [ default: false] " ,
193193 ),
194194 (
195195 "owner=" ,
@@ -201,18 +201,18 @@ class bdist_wheel(Command):
201201 "g" ,
202202 "Group name used when creating a tar file [default: current group]" ,
203203 ),
204- ("universal" , None , "make a universal wheel ( default: false) " ),
204+ ("universal" , None , "make a universal wheel [ default: false] " ),
205205 (
206206 "compression=" ,
207207 None ,
208- "zipfile compression (one of: {}) ( default: 'deflated') " .format (
208+ "zipfile compression (one of: {}) [ default: 'deflated'] " .format (
209209 ", " .join (supported_compressions )
210210 ),
211211 ),
212212 (
213213 "python-tag=" ,
214214 None ,
215- f"Python implementation compatibility tag ( default: '{ python_tag ()} ') " ,
215+ f"Python implementation compatibility tag [ default: '{ python_tag ()} '] " ,
216216 ),
217217 (
218218 "build-number=" ,
@@ -224,7 +224,7 @@ class bdist_wheel(Command):
224224 (
225225 "py-limited-api=" ,
226226 None ,
227- "Python tag (cp32|cp33|cpNN) for abi3 wheel tag ( default: false) " ,
227+ "Python tag (cp32|cp33|cpNN) for abi3 wheel tag [ default: false] " ,
228228 ),
229229 ]
230230
0 commit comments