@@ -109,7 +109,6 @@ def test_default(self, helpers, isolation):
109
109
110
110
assert builder .construct_setup_py_file ([]) == helpers .dedent (
111
111
"""
112
- # -*- coding: utf-8 -*-
113
112
from setuptools import setup
114
113
115
114
setup(
@@ -125,7 +124,6 @@ def test_packages(self, helpers, isolation):
125
124
126
125
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
127
126
"""
128
- # -*- coding: utf-8 -*-
129
127
from setuptools import setup
130
128
131
129
setup(
@@ -145,7 +143,6 @@ def test_description(self, helpers, isolation):
145
143
146
144
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
147
145
"""
148
- # -*- coding: utf-8 -*-
149
146
from setuptools import setup
150
147
151
148
setup(
@@ -172,7 +169,6 @@ def test_readme(self, helpers, isolation):
172
169
173
170
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
174
171
"""
175
- # -*- coding: utf-8 -*-
176
172
from setuptools import setup
177
173
178
174
setup(
@@ -193,7 +189,6 @@ def test_authors_name(self, helpers, isolation):
193
189
194
190
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
195
191
"""
196
- # -*- coding: utf-8 -*-
197
192
from setuptools import setup
198
193
199
194
setup(
@@ -214,7 +209,6 @@ def test_authors_email(self, helpers, isolation):
214
209
215
210
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
216
211
"""
217
- # -*- coding: utf-8 -*-
218
212
from setuptools import setup
219
213
220
214
setup(
@@ -237,7 +231,6 @@ def test_authors_name_and_email(self, helpers, isolation):
237
231
238
232
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
239
233
"""
240
- # -*- coding: utf-8 -*-
241
234
from setuptools import setup
242
235
243
236
setup(
@@ -258,7 +251,6 @@ def test_authors_multiple(self, helpers, isolation):
258
251
259
252
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
260
253
"""
261
- # -*- coding: utf-8 -*-
262
254
from setuptools import setup
263
255
264
256
setup(
@@ -279,7 +271,6 @@ def test_maintainers_name(self, helpers, isolation):
279
271
280
272
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
281
273
"""
282
- # -*- coding: utf-8 -*-
283
274
from setuptools import setup
284
275
285
276
setup(
@@ -300,7 +291,6 @@ def test_maintainers_email(self, helpers, isolation):
300
291
301
292
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
302
293
"""
303
- # -*- coding: utf-8 -*-
304
294
from setuptools import setup
305
295
306
296
setup(
@@ -323,7 +313,6 @@ def test_maintainers_name_and_email(self, helpers, isolation):
323
313
324
314
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
325
315
"""
326
- # -*- coding: utf-8 -*-
327
316
from setuptools import setup
328
317
329
318
setup(
@@ -344,7 +333,6 @@ def test_maintainers_multiple(self, helpers, isolation):
344
333
345
334
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
346
335
"""
347
- # -*- coding: utf-8 -*-
348
336
from setuptools import setup
349
337
350
338
setup(
@@ -369,7 +357,6 @@ def test_classifiers(self, helpers, isolation):
369
357
370
358
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
371
359
"""
372
- # -*- coding: utf-8 -*-
373
360
from setuptools import setup
374
361
375
362
setup(
@@ -393,7 +380,6 @@ def test_dependencies(self, helpers, isolation):
393
380
394
381
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
395
382
"""
396
- # -*- coding: utf-8 -*-
397
383
from setuptools import setup
398
384
399
385
setup(
@@ -417,7 +403,6 @@ def test_dependencies_extra(self, helpers, isolation):
417
403
418
404
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )], ['baz==3' ]) == helpers .dedent (
419
405
"""
420
- # -*- coding: utf-8 -*-
421
406
from setuptools import setup
422
407
423
408
setup(
@@ -451,7 +436,6 @@ def test_optional_dependencies(self, helpers, isolation):
451
436
452
437
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
453
438
"""
454
- # -*- coding: utf-8 -*-
455
439
from setuptools import setup
456
440
457
441
setup(
@@ -481,7 +465,6 @@ def test_scripts(self, helpers, isolation):
481
465
482
466
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
483
467
"""
484
- # -*- coding: utf-8 -*-
485
468
from setuptools import setup
486
469
487
470
setup(
@@ -509,7 +492,6 @@ def test_gui_scripts(self, helpers, isolation):
509
492
510
493
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
511
494
"""
512
- # -*- coding: utf-8 -*-
513
495
from setuptools import setup
514
496
515
497
setup(
@@ -544,7 +526,6 @@ def test_entry_points(self, helpers, isolation):
544
526
545
527
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
546
528
"""
547
- # -*- coding: utf-8 -*-
548
529
from setuptools import setup
549
530
550
531
setup(
@@ -599,7 +580,6 @@ def test_all(self, helpers, isolation):
599
580
600
581
assert builder .construct_setup_py_file (['my_app' , os .path .join ('my_app' , 'pkg' )]) == helpers .dedent (
601
582
"""
602
- # -*- coding: utf-8 -*-
603
583
from setuptools import setup
604
584
605
585
setup(
0 commit comments