Installations de packages sous windows

Le problème exposé dans ce sujet a été résolu.

Salut à tous,

Pour des besoins professionnels, j’essaye de me mettre à Python avec peu de réussite pour le moment à mon grand désespoir.

Je viens de php car je travaille dans le web, dans le marketing pour un site ecommerce.

Je bloque à l’installation de packages sous windows. Je ne comprends pas quel est la procédure. Beaucoup de tuto parle de pip mas j’ai que des retours d’erreur à chaque fois que je rentre des lignes de cmd.

Je n’ai trouvé aucun tuto la dessus. Le dernier package que j’ai tenté d’installé était scrapy. J’ai mis le dossier dans le dossier lib de python mais cela ne fonctionne pas …

Pourriez-vous m’aider en m’expliquant la procédure svp.

Merci Florian

Pour que la console sache de quel programme tu parles, tu dois ajouter le chemin d’accès à la liste des chemins d’accès. Cette liste est contenue dans une variable d’environnement %PATH%.

Avant toute manipulation tu peux taper echo %PATH% dans la console. Et sauvegarder ce qui s’affiche dans un fichier texte, dans le cas où tu ferais une fausse manip.

Il faut suivre cette procédure et ajouter :

  • C:\Python33\Tools\Scripts ;
  • C:\Python33.

Quand tu as finis, tu dois ré-ouvrir la console pour que le changement s’effectue.

Vérifie si pip.py est dans Scripts, sinon tape cette commande :

  • python easy_install.py pip pour installer pip.

Merci pour ces explications A-312. Grace à ts explications je commence à mieux comprendre.

Juste pour comprendre : pourquoi mettre deux fois ? C:\Python33\Tools\Scripts ; C:\Python33

et pas juste C:\Python33 ?

Une fois que le chemin d’accès dans PATH est ajouté. Pour installer les packages, j’ai juste à faire : python easy_install.py [packages exemple : scrapy] ? Pas de fichier/dossier à mettre à la racine de mon fichier Python ?

Merci

Florian

+0 -0

Merci pour ces explications A-312. Grace à ts explications je commence à mieux comprendre.

Juste pour comprendre : pourquoi mettre deux fois ? C:\Python33\Tools\Scripts ; C:\Python33

et pas juste C:\Python33 ?

arglow

Parce que sur C:\Python33  tu as "python.exe" pour la commande "python". Et C:\Python33\Tools\Scripts des scripts comme "easy_install.py". :)

Une fois que le chemin d’accès dans PATH est ajouté. Pour installer les packages, j’ai juste à faire : python easy_install.py [packages exemple : scrapy] ? Pas de fichier/dossier à mettre à la racine de mon fichier Python ?

Merci

Florian

arglow

Oui c’est bien cette commande. Et non tu n’as pas besoin d’ajouter des fichiers à la racine (sauf exception), car tu as ajoutés C:\Python33\Tools\Scripts.

Ok A-312 je vais tester tout ça des ce soir.

J’ai encore du mal avec se qu’il y a dans C:\Python33\Tools\Scripts au départ, ou si c’est qu’automatiquement à l’installation d’un package cela met les fichiers à l’intérieur.

J’ai encore du mal à appréhender toute cette logique de gestion des fichiers en lien avec mon fichier .py.

Je teste tout ça et je me permets de revenir vers toi au besoin.

Merci pour ta patience face à mon ignorance ;-). Florian

Bon alors il semblerait que j’ai réussi pour les configs du %PATH% ou presque

1
2
3
4
5
6
7
Microsoft Windows [version 10.0.14393]
(c) 2016 Microsoft Corporation. Tous droits réservés.

C:\Users\Florian>python
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:01:18) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

J’ai vérifié dans Scripts j’ai bien pip et easyinstall :Image utilisateur

Toutefois je ne comprends pas quand je tape python easy_install.py scrapy :

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
Microsoft Windows [version 10.0.14393]
(c) 2016 Microsoft Corporation. Tous droits réservés.

C:\Users\Florian>python
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:01:18) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> python easy_install.py scrapy
  File "<stdin>", line 1
    python easy_install.py scrapy
                      ^
SyntaxError: invalid syntax
>>>

Ou c’est que cela ne va pas.

Sachant que j’ai bien créé 2 nouvelles variables d’envirronement PATH :Image utilisateur

Je ne suis pas très loin mais je ne sais pas ou cela bloque.

Merci

Florian

Matouche -> alors voila aprés nouvel essai :

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
Microsoft Windows [version 10.0.14393]
(c) 2016 Microsoft Corporation. Tous droits réservés.

C:\Users\Florian>python
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:01:18) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> pip install scrapy
  File "<stdin>", line 1
    pip install scrapy
              ^
SyntaxError: invalid syntax
>>>
+0 -0

Toujours pas ! ^^ Tu ne DOIS PAS taper la ligne C:\Users\Florian>python car tu lances ainsi l’interpréteur Python interactif. Tu dois directement taper ta commande pip dans l’invite de commande.

Pour bien faire la différence, les lignes qui commencent par >>> sont les lignes à l’intérieur de l’interpréteur Python. Elles vont être interprétées directement par Python. Les lignes qui commencent par C:\Users\Florian> sont celles qui sont à l’extérieur de l’interpréteur Python qui sont interprétées par l’invite de commande du système Windows.

Si tu as déjà lancé l’interpréteur Python, pour en sortir tu peux faire Ctrl-D.

+0 -0

Alleluia !!!!

Trop fort les gars. Merci de votre .... Patience.

Matouche -> merci pour les explications détaillées sur la ligne de commande windows/python.

vu que ça aurait été trop simple si ça fonctionné du premier coup :

   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
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
Microsoft Windows [version 10.0.14393]
(c) 2016 Microsoft Corporation. Tous droits réservés.

C:\Users\Florian> pip install scrapy
Collecting scrapy
  Downloading Scrapy-1.4.0-py2.py3-none-any.whl (248kB)
    100% |################################| 256kB 1.2MB/s
Collecting parsel>=1.1 (from scrapy)
  Downloading parsel-1.2.0-py2.py3-none-any.whl
Collecting lxml (from scrapy)
  Downloading lxml-3.8.0-cp35-cp35m-win32.whl (2.9MB)
    100% |################################| 2.9MB 369kB/s
Collecting cssselect>=0.9 (from scrapy)
  Downloading cssselect-1.0.1-py2.py3-none-any.whl
Collecting service-identity (from scrapy)
  Downloading service_identity-17.0.0-py2.py3-none-any.whl
Collecting pyOpenSSL (from scrapy)
  Downloading pyOpenSSL-17.0.0-py2.py3-none-any.whl (51kB)
    100% |################################| 61kB 311kB/s
Collecting PyDispatcher>=2.0.5 (from scrapy)
  Downloading PyDispatcher-2.0.5.tar.gz
Collecting w3lib>=1.17.0 (from scrapy)
  Downloading w3lib-1.17.0-py2.py3-none-any.whl
Collecting six>=1.5.2 (from scrapy)
  Downloading six-1.10.0-py2.py3-none-any.whl
Collecting queuelib (from scrapy)
  Downloading queuelib-1.4.2-py2.py3-none-any.whl
Collecting Twisted>=13.1.0 (from scrapy)
  Downloading Twisted-17.5.0.tar.bz2 (3.0MB)
    100% |################################| 3.0MB 352kB/s
Collecting pyasn1 (from service-identity->scrapy)
  Downloading pyasn1-0.2.3-py2.py3-none-any.whl (53kB)
    100% |################################| 61kB 410kB/s
Collecting pyasn1-modules (from service-identity->scrapy)
  Downloading pyasn1_modules-0.0.9-py2.py3-none-any.whl (60kB)
    100% |################################| 61kB 451kB/s
Collecting attrs (from service-identity->scrapy)
  Downloading attrs-17.2.0-py2.py3-none-any.whl
Collecting cryptography>=1.7 (from pyOpenSSL->scrapy)
  Downloading cryptography-1.9-cp35-cp35m-win32.whl (1.1MB)
    100% |################################| 1.1MB 524kB/s
Collecting zope.interface>=4.0.2 (from Twisted>=13.1.0->scrapy)
  Downloading zope.interface-4.4.2-cp35-cp35m-win32.whl (137kB)
    100% |################################| 143kB 596kB/s
Collecting constantly>=15.1 (from Twisted>=13.1.0->scrapy)
  Downloading constantly-15.1.0-py2.py3-none-any.whl
Collecting incremental>=16.10.1 (from Twisted>=13.1.0->scrapy)
  Downloading incremental-17.5.0-py2.py3-none-any.whl
Collecting Automat>=0.3.0 (from Twisted>=13.1.0->scrapy)
  Downloading Automat-0.6.0-py2.py3-none-any.whl
Collecting hyperlink>=17.1.1 (from Twisted>=13.1.0->scrapy)
  Downloading hyperlink-17.2.1-py2.py3-none-any.whl
Collecting asn1crypto>=0.21.0 (from cryptography>=1.7->pyOpenSSL->scrapy)
  Downloading asn1crypto-0.22.0-py2.py3-none-any.whl (97kB)
    100% |################################| 102kB 775kB/s
Collecting cffi>=1.7 (from cryptography>=1.7->pyOpenSSL->scrapy)
  Downloading cffi-1.10.0-cp35-cp35m-win32.whl (149kB)
    100% |################################| 153kB 778kB/s
Collecting idna>=2.1 (from cryptography>=1.7->pyOpenSSL->scrapy)
  Downloading idna-2.5-py2.py3-none-any.whl (55kB)
    100% |################################| 61kB 1.0MB/s
Requirement already satisfied: setuptools in c:\users\florian\appdata\local\programs\python\python35-32\lib\site-packages (from zope.interface>=4.0.2->Twisted>=13.1.0->scrapy)
Collecting pycparser (from cffi>=1.7->cryptography>=1.7->pyOpenSSL->scrapy)
  Downloading pycparser-2.17.tar.gz (231kB)
    100% |################################| 235kB 560kB/s
Building wheels for collected packages: PyDispatcher, Twisted, pycparser
  Running setup.py bdist_wheel for PyDispatcher ... done
  Stored in directory: C:\Users\Florian\AppData\Local\pip\Cache\wheels\86\02\a1\5857c77600a28813aaf0f66d4e4568f50c9f133277a4122411
  Running setup.py bdist_wheel for Twisted ... error
  Complete output from command c:\users\florian\appdata\local\programs\python\python35-32\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\Florian\\AppData\\Local\\Temp\\pip-build-aggcy2ps\\Twisted\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d C:\Users\Florian\AppData\Local\Temp\tmp1y385d78pip-wheel- --python-tag cp35:
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build\lib.win32-3.5
  creating build\lib.win32-3.5\twisted
  copying src\twisted\copyright.py -> build\lib.win32-3.5\twisted
  copying src\twisted\plugin.py -> build\lib.win32-3.5\twisted
  copying src\twisted\_version.py -> build\lib.win32-3.5\twisted
  copying src\twisted\__init__.py -> build\lib.win32-3.5\twisted
  copying src\twisted\__main__.py -> build\lib.win32-3.5\twisted
  creating build\lib.win32-3.5\twisted\application
  copying src\twisted\application\app.py -> build\lib.win32-3.5\twisted\application
  copying src\twisted\application\internet.py -> build\lib.win32-3.5\twisted\application
  copying src\twisted\application\reactors.py -> build\lib.win32-3.5\twisted\application
  copying src\twisted\application\service.py -> build\lib.win32-3.5\twisted\application
  copying src\twisted\application\strports.py -> build\lib.win32-3.5\twisted\application
  copying src\twisted\application\__init__.py -> build\lib.win32-3.5\twisted\application
  creating build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\avatar.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\checkers.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\endpoints.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\error.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\interfaces.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\ls.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\manhole.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\manhole_ssh.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\manhole_tap.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\mixin.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\recvline.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\stdio.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\tap.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\telnet.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\ttymodes.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\unix.py -> build\lib.win32-3.5\twisted\conch
  copying src\twisted\conch\__init__.py -> build\lib.win32-3.5\twisted\conch
  creating build\lib.win32-3.5\twisted\cred
  copying src\twisted\cred\checkers.py -> build\lib.win32-3.5\twisted\cred
  copying src\twisted\cred\credentials.py -> build\lib.win32-3.5\twisted\cred
  copying src\twisted\cred\error.py -> build\lib.win32-3.5\twisted\cred
  copying src\twisted\cred\portal.py -> build\lib.win32-3.5\twisted\cred
  copying src\twisted\cred\strcred.py -> build\lib.win32-3.5\twisted\cred
  copying src\twisted\cred\_digest.py -> build\lib.win32-3.5\twisted\cred
  copying src\twisted\cred\__init__.py -> build\lib.win32-3.5\twisted\cred
  creating build\lib.win32-3.5\twisted\enterprise
  copying src\twisted\enterprise\adbapi.py -> build\lib.win32-3.5\twisted\enterprise
  copying src\twisted\enterprise\__init__.py -> build\lib.win32-3.5\twisted\enterprise
  creating build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\abstract.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\address.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\asyncioreactor.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\base.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\cfreactor.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\default.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\defer.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\endpoints.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\epollreactor.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\error.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\fdesc.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\gireactor.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\gtk3reactor.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\inotify.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\interfaces.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\kqreactor.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\main.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\pollreactor.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\posixbase.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\process.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\protocol.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\reactor.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\selectreactor.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\serialport.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\ssl.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\stdio.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\task.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\tcp.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\threads.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\udp.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\unix.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\utils.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\win32eventreactor.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\wxreactor.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\wxsupport.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_baseprocess.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_dumbwin32proc.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_glibbase.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_idna.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_newtls.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_pollingfile.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_posixserialport.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_posixstdio.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_producer_helpers.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_resolver.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_signals.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_sslverify.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_threadedselect.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_win32serialport.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\_win32stdio.py -> build\lib.win32-3.5\twisted\internet
  copying src\twisted\internet\__init__.py -> build\lib.win32-3.5\twisted\internet
  creating build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_buffer.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_file.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_filter.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_flatten.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_format.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_global.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_io.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_json.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_legacy.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_levels.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_logger.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_observer.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_stdlib.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\_util.py -> build\lib.win32-3.5\twisted\logger
  copying src\twisted\logger\__init__.py -> build\lib.win32-3.5\twisted\logger
  creating build\lib.win32-3.5\twisted\mail
  copying src\twisted\mail\interfaces.py -> build\lib.win32-3.5\twisted\mail
  copying src\twisted\mail\smtp.py -> build\lib.win32-3.5\twisted\mail
  copying src\twisted\mail\_cred.py -> build\lib.win32-3.5\twisted\mail
  copying src\twisted\mail\_except.py -> build\lib.win32-3.5\twisted\mail
  creating build\lib.win32-3.5\twisted\names
  copying src\twisted\names\authority.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\cache.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\client.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\common.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\dns.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\error.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\hosts.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\resolve.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\root.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\secondary.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\server.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\srvconnect.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\tap.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\_rfc1982.py -> build\lib.win32-3.5\twisted\names
  copying src\twisted\names\__init__.py -> build\lib.win32-3.5\twisted\names
  creating build\lib.win32-3.5\twisted\pair
  copying src\twisted\pair\ethernet.py -> build\lib.win32-3.5\twisted\pair
  copying src\twisted\pair\ip.py -> build\lib.win32-3.5\twisted\pair
  copying src\twisted\pair\raw.py -> build\lib.win32-3.5\twisted\pair
  copying src\twisted\pair\rawudp.py -> build\lib.win32-3.5\twisted\pair
  copying src\twisted\pair\testing.py -> build\lib.win32-3.5\twisted\pair
  copying src\twisted\pair\tuntap.py -> build\lib.win32-3.5\twisted\pair
  copying src\twisted\pair\__init__.py -> build\lib.win32-3.5\twisted\pair
  creating build\lib.win32-3.5\twisted\persisted
  copying src\twisted\persisted\aot.py -> build\lib.win32-3.5\twisted\persisted
  copying src\twisted\persisted\crefutil.py -> build\lib.win32-3.5\twisted\persisted
  copying src\twisted\persisted\dirdbm.py -> build\lib.win32-3.5\twisted\persisted
  copying src\twisted\persisted\sob.py -> build\lib.win32-3.5\twisted\persisted
  copying src\twisted\persisted\styles.py -> build\lib.win32-3.5\twisted\persisted
  copying src\twisted\persisted\__init__.py -> build\lib.win32-3.5\twisted\persisted
  creating build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\cred_anonymous.py -> build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\cred_file.py -> build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\cred_memory.py -> build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\cred_sshkeys.py -> build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\cred_unix.py -> build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\twisted_conch.py -> build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\twisted_core.py -> build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\twisted_ftp.py -> build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\twisted_reactors.py -> build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\twisted_trial.py -> build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\twisted_web.py -> build\lib.win32-3.5\twisted\plugins
  copying src\twisted\plugins\__init__.py -> build\lib.win32-3.5\twisted\plugins
  creating build\lib.win32-3.5\twisted\positioning
  copying src\twisted\positioning\base.py -> build\lib.win32-3.5\twisted\positioning
  copying src\twisted\positioning\ipositioning.py -> build\lib.win32-3.5\twisted\positioning
  copying src\twisted\positioning\nmea.py -> build\lib.win32-3.5\twisted\positioning
  copying src\twisted\positioning\_sentence.py -> build\lib.win32-3.5\twisted\positioning
  copying src\twisted\positioning\__init__.py -> build\lib.win32-3.5\twisted\positioning
  creating build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\amp.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\basic.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\dict.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\finger.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\ftp.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\htb.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\loopback.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\memcache.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\pcp.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\policies.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\portforward.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\postfix.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\sip.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\socks.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\stateful.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\tls.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\wire.py -> build\lib.win32-3.5\twisted\protocols
  copying src\twisted\protocols\__init__.py -> build\lib.win32-3.5\twisted\protocols
  creating build\lib.win32-3.5\twisted\python
  copying src\twisted\python\compat.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\components.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\constants.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\context.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\deprecate.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\failure.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\fakepwd.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\filepath.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\htmlizer.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\lockfile.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\log.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\logfile.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\modules.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\monkey.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\procutils.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\randbytes.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\reflect.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\roots.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\runtime.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\sendmsg.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\syslog.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\systemd.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\text.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\threadable.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\threadpool.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\url.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\urlpath.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\usage.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\util.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\versions.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\win32.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\zippath.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\zipstream.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\_appdirs.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\_inotify.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\_oldstyle.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\_setup.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\_shellcomp.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\_textattributes.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\_tzhelper.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\_url.py -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\__init__.py -> build\lib.win32-3.5\twisted\python
  creating build\lib.win32-3.5\twisted\runner
  copying src\twisted\runner\inetd.py -> build\lib.win32-3.5\twisted\runner
  copying src\twisted\runner\inetdconf.py -> build\lib.win32-3.5\twisted\runner
  copying src\twisted\runner\inetdtap.py -> build\lib.win32-3.5\twisted\runner
  copying src\twisted\runner\procmon.py -> build\lib.win32-3.5\twisted\runner
  copying src\twisted\runner\procmontap.py -> build\lib.win32-3.5\twisted\runner
  copying src\twisted\runner\__init__.py -> build\lib.win32-3.5\twisted\runner
  creating build\lib.win32-3.5\twisted\scripts
  copying src\twisted\scripts\htmlizer.py -> build\lib.win32-3.5\twisted\scripts
  copying src\twisted\scripts\trial.py -> build\lib.win32-3.5\twisted\scripts
  copying src\twisted\scripts\twistd.py -> build\lib.win32-3.5\twisted\scripts
  copying src\twisted\scripts\_twistd_unix.py -> build\lib.win32-3.5\twisted\scripts
  copying src\twisted\scripts\_twistw.py -> build\lib.win32-3.5\twisted\scripts
  copying src\twisted\scripts\__init__.py -> build\lib.win32-3.5\twisted\scripts
  creating build\lib.win32-3.5\twisted\spread
  copying src\twisted\spread\banana.py -> build\lib.win32-3.5\twisted\spread
  copying src\twisted\spread\flavors.py -> build\lib.win32-3.5\twisted\spread
  copying src\twisted\spread\interfaces.py -> build\lib.win32-3.5\twisted\spread
  copying src\twisted\spread\jelly.py -> build\lib.win32-3.5\twisted\spread
  copying src\twisted\spread\pb.py -> build\lib.win32-3.5\twisted\spread
  copying src\twisted\spread\publish.py -> build\lib.win32-3.5\twisted\spread
  copying src\twisted\spread\util.py -> build\lib.win32-3.5\twisted\spread
  copying src\twisted\spread\__init__.py -> build\lib.win32-3.5\twisted\spread
  creating build\lib.win32-3.5\twisted\tap
  copying src\twisted\tap\ftp.py -> build\lib.win32-3.5\twisted\tap
  copying src\twisted\tap\__init__.py -> build\lib.win32-3.5\twisted\tap
  creating build\lib.win32-3.5\twisted\test
  copying src\twisted\test\iosim.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\mock_win32process.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\plugin_basic.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\plugin_extra1.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\plugin_extra2.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_cmdline.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_echoer.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_fds.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_getargv.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_getenv.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_linger.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_reader.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_signal.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_stdinreader.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_tester.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_tty.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\process_twisted.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\proto_helpers.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\reflect_helper_IE.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\reflect_helper_VE.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\reflect_helper_ZDE.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\ssl_helpers.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\stdio_test_consumer.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\stdio_test_halfclose.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\stdio_test_hostpeer.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\stdio_test_lastwrite.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\stdio_test_loseconn.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\stdio_test_producer.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\stdio_test_write.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\stdio_test_writeseq.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\testutils.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_abstract.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_adbapi.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_amp.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_application.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_compat.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_context.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_cooperator.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_defer.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_defgen.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_dict.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_dirdbm.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_error.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_factories.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_failure.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_fdesc.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_finger.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_ftp.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_ftp_options.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_htb.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_internet.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_iosim.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_iutils.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_lockfile.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_log.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_logfile.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_loopback.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_main.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_memcache.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_modules.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_monkey.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_nooldstyle.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_paths.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_pcp.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_persisted.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_plugin.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_policies.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_postfix.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_process.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_protocols.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_randbytes.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_reflect.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_roots.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_sip.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_sob.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_socks.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_ssl.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_sslverify.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_stateful.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_stdio.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_stringtransport.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_strports.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_task.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_tcp.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_tcp_internals.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_text.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_threadable.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_threadpool.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_threads.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_tpfile.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_twistd.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_twisted.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_udp.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_unix.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\test_usage.py -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\__init__.py -> build\lib.win32-3.5\twisted\test
  creating build\lib.win32-3.5\twisted\trial
  copying src\twisted\trial\itrial.py -> build\lib.win32-3.5\twisted\trial
  copying src\twisted\trial\reporter.py -> build\lib.win32-3.5\twisted\trial
  copying src\twisted\trial\runner.py -> build\lib.win32-3.5\twisted\trial
  copying src\twisted\trial\unittest.py -> build\lib.win32-3.5\twisted\trial
  copying src\twisted\trial\util.py -> build\lib.win32-3.5\twisted\trial
  copying src\twisted\trial\_asyncrunner.py -> build\lib.win32-3.5\twisted\trial
  copying src\twisted\trial\_asynctest.py -> build\lib.win32-3.5\twisted\trial
  copying src\twisted\trial\_synctest.py -> build\lib.win32-3.5\twisted\trial
  copying src\twisted\trial\__init__.py -> build\lib.win32-3.5\twisted\trial
  copying src\twisted\trial\__main__.py -> build\lib.win32-3.5\twisted\trial
  creating build\lib.win32-3.5\twisted\web
  copying src\twisted\web\client.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\demo.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\distrib.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\error.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\guard.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\html.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\http.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\http_headers.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\iweb.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\proxy.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\resource.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\script.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\server.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\static.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\tap.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\template.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\twcgi.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\util.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\vhost.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\wsgi.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\xmlrpc.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\_element.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\_flatten.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\_http2.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\_newclient.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\_responses.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\_stan.py -> build\lib.win32-3.5\twisted\web
  copying src\twisted\web\__init__.py -> build\lib.win32-3.5\twisted\web
  creating build\lib.win32-3.5\twisted\words
  copying src\twisted\words\ewords.py -> build\lib.win32-3.5\twisted\words
  copying src\twisted\words\iwords.py -> build\lib.win32-3.5\twisted\words
  copying src\twisted\words\service.py -> build\lib.win32-3.5\twisted\words
  copying src\twisted\words\xmpproutertap.py -> build\lib.win32-3.5\twisted\words
  copying src\twisted\words\__init__.py -> build\lib.win32-3.5\twisted\words
  creating build\lib.win32-3.5\twisted\_threads
  copying src\twisted\_threads\_convenience.py -> build\lib.win32-3.5\twisted\_threads
  copying src\twisted\_threads\_ithreads.py -> build\lib.win32-3.5\twisted\_threads
  copying src\twisted\_threads\_memory.py -> build\lib.win32-3.5\twisted\_threads
  copying src\twisted\_threads\_pool.py -> build\lib.win32-3.5\twisted\_threads
  copying src\twisted\_threads\_team.py -> build\lib.win32-3.5\twisted\_threads
  copying src\twisted\_threads\_threadworker.py -> build\lib.win32-3.5\twisted\_threads
  copying src\twisted\_threads\__init__.py -> build\lib.win32-3.5\twisted\_threads
  creating build\lib.win32-3.5\twisted\application\runner
  copying src\twisted\application\runner\_exit.py -> build\lib.win32-3.5\twisted\application\runner
  copying src\twisted\application\runner\_pidfile.py -> build\lib.win32-3.5\twisted\application\runner
  copying src\twisted\application\runner\_runner.py -> build\lib.win32-3.5\twisted\application\runner
  copying src\twisted\application\runner\__init__.py -> build\lib.win32-3.5\twisted\application\runner
  creating build\lib.win32-3.5\twisted\application\test
  copying src\twisted\application\test\test_internet.py -> build\lib.win32-3.5\twisted\application\test
  copying src\twisted\application\test\test_service.py -> build\lib.win32-3.5\twisted\application\test
  copying src\twisted\application\test\__init__.py -> build\lib.win32-3.5\twisted\application\test
  creating build\lib.win32-3.5\twisted\application\twist
  copying src\twisted\application\twist\_options.py -> build\lib.win32-3.5\twisted\application\twist
  copying src\twisted\application\twist\_twist.py -> build\lib.win32-3.5\twisted\application\twist
  copying src\twisted\application\twist\__init__.py -> build\lib.win32-3.5\twisted\application\twist
  creating build\lib.win32-3.5\twisted\application\runner\test
  copying src\twisted\application\runner\test\mockreactor.py -> build\lib.win32-3.5\twisted\application\runner\test
  copying src\twisted\application\runner\test\test_exit.py -> build\lib.win32-3.5\twisted\application\runner\test
  copying src\twisted\application\runner\test\test_pidfile.py -> build\lib.win32-3.5\twisted\application\runner\test
  copying src\twisted\application\runner\test\test_runner.py -> build\lib.win32-3.5\twisted\application\runner\test
  copying src\twisted\application\runner\test\__init__.py -> build\lib.win32-3.5\twisted\application\runner\test
  creating build\lib.win32-3.5\twisted\application\twist\test
  copying src\twisted\application\twist\test\test_options.py -> build\lib.win32-3.5\twisted\application\twist\test
  copying src\twisted\application\twist\test\test_twist.py -> build\lib.win32-3.5\twisted\application\twist\test
  copying src\twisted\application\twist\test\__init__.py -> build\lib.win32-3.5\twisted\application\twist\test
  creating build\lib.win32-3.5\twisted\conch\client
  copying src\twisted\conch\client\agent.py -> build\lib.win32-3.5\twisted\conch\client
  copying src\twisted\conch\client\connect.py -> build\lib.win32-3.5\twisted\conch\client
  copying src\twisted\conch\client\default.py -> build\lib.win32-3.5\twisted\conch\client
  copying src\twisted\conch\client\direct.py -> build\lib.win32-3.5\twisted\conch\client
  copying src\twisted\conch\client\knownhosts.py -> build\lib.win32-3.5\twisted\conch\client
  copying src\twisted\conch\client\options.py -> build\lib.win32-3.5\twisted\conch\client
  copying src\twisted\conch\client\__init__.py -> build\lib.win32-3.5\twisted\conch\client
  creating build\lib.win32-3.5\twisted\conch\insults
  copying src\twisted\conch\insults\client.py -> build\lib.win32-3.5\twisted\conch\insults
  copying src\twisted\conch\insults\colors.py -> build\lib.win32-3.5\twisted\conch\insults
  copying src\twisted\conch\insults\helper.py -> build\lib.win32-3.5\twisted\conch\insults
  copying src\twisted\conch\insults\insults.py -> build\lib.win32-3.5\twisted\conch\insults
  copying src\twisted\conch\insults\text.py -> build\lib.win32-3.5\twisted\conch\insults
  copying src\twisted\conch\insults\window.py -> build\lib.win32-3.5\twisted\conch\insults
  copying src\twisted\conch\insults\__init__.py -> build\lib.win32-3.5\twisted\conch\insults
  creating build\lib.win32-3.5\twisted\conch\openssh_compat
  copying src\twisted\conch\openssh_compat\factory.py -> build\lib.win32-3.5\twisted\conch\openssh_compat
  copying src\twisted\conch\openssh_compat\primes.py -> build\lib.win32-3.5\twisted\conch\openssh_compat
  copying src\twisted\conch\openssh_compat\__init__.py -> build\lib.win32-3.5\twisted\conch\openssh_compat
  creating build\lib.win32-3.5\twisted\conch\scripts
  copying src\twisted\conch\scripts\cftp.py -> build\lib.win32-3.5\twisted\conch\scripts
  copying src\twisted\conch\scripts\ckeygen.py -> build\lib.win32-3.5\twisted\conch\scripts
  copying src\twisted\conch\scripts\conch.py -> build\lib.win32-3.5\twisted\conch\scripts
  copying src\twisted\conch\scripts\tkconch.py -> build\lib.win32-3.5\twisted\conch\scripts
  copying src\twisted\conch\scripts\__init__.py -> build\lib.win32-3.5\twisted\conch\scripts
  creating build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\address.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\agent.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\channel.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\common.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\connection.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\factory.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\filetransfer.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\forwarding.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\keys.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\service.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\session.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\sexpy.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\transport.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\userauth.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\_cryptography_backports.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\_kex.py -> build\lib.win32-3.5\twisted\conch\ssh
  copying src\twisted\conch\ssh\__init__.py -> build\lib.win32-3.5\twisted\conch\ssh
  creating build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\keydata.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\loopback.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_address.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_agent.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_cftp.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_channel.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_checkers.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_ckeygen.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_conch.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_connection.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_default.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_endpoints.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_filetransfer.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_forwarding.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_helper.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_insults.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_keys.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_knownhosts.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_manhole.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_manhole_tap.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_mixin.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_openssh_compat.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_recvline.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_scripts.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_session.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_ssh.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_tap.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_telnet.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_text.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_transport.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_unix.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_userauth.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\test_window.py -> build\lib.win32-3.5\twisted\conch\test
  copying src\twisted\conch\test\__init__.py -> build\lib.win32-3.5\twisted\conch\test
  creating build\lib.win32-3.5\twisted\conch\ui
  copying src\twisted\conch\ui\ansi.py -> build\lib.win32-3.5\twisted\conch\ui
  copying src\twisted\conch\ui\tkvt100.py -> build\lib.win32-3.5\twisted\conch\ui
  copying src\twisted\conch\ui\__init__.py -> build\lib.win32-3.5\twisted\conch\ui
  creating build\lib.win32-3.5\twisted\cred\test
  copying src\twisted\cred\test\test_cramauth.py -> build\lib.win32-3.5\twisted\cred\test
  copying src\twisted\cred\test\test_cred.py -> build\lib.win32-3.5\twisted\cred\test
  copying src\twisted\cred\test\test_digestauth.py -> build\lib.win32-3.5\twisted\cred\test
  copying src\twisted\cred\test\test_simpleauth.py -> build\lib.win32-3.5\twisted\cred\test
  copying src\twisted\cred\test\test_strcred.py -> build\lib.win32-3.5\twisted\cred\test
  copying src\twisted\cred\test\__init__.py -> build\lib.win32-3.5\twisted\cred\test
  creating build\lib.win32-3.5\twisted\internet\iocpreactor
  copying src\twisted\internet\iocpreactor\abstract.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
  copying src\twisted\internet\iocpreactor\const.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
  copying src\twisted\internet\iocpreactor\interfaces.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
  copying src\twisted\internet\iocpreactor\reactor.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
  copying src\twisted\internet\iocpreactor\setup.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
  copying src\twisted\internet\iocpreactor\tcp.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
  copying src\twisted\internet\iocpreactor\udp.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
  copying src\twisted\internet\iocpreactor\__init__.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
  creating build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\connectionmixins.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\fakeendpoint.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\modulehelpers.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\process_cli.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\process_helper.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\reactormixins.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_abstract.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_address.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_base.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_baseprocess.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_core.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_coroutines.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_default.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_endpoints.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_epollreactor.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_fdset.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_filedescriptor.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_gireactor.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_glibbase.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_inlinecb.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_inotify.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_iocp.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_kqueuereactor.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_main.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_newtls.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_pollingfile.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_posixbase.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_posixprocess.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_process.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_protocol.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_resolver.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_serialport.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_sigchld.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_socket.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_stdio.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_tcp.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_threads.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_time.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_tls.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_udp.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_udp_internals.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_unix.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\test_win32events.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\_posixifaces.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\_win32ifaces.py -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\__init__.py -> build\lib.win32-3.5\twisted\internet\test
  creating build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_buffer.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_file.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_filter.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_flatten.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_format.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_global.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_io.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_json.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_legacy.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_levels.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_logger.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_observer.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_stdlib.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\test_util.py -> build\lib.win32-3.5\twisted\logger\test
  copying src\twisted\logger\test\__init__.py -> build\lib.win32-3.5\twisted\logger\test
  creating build\lib.win32-3.5\twisted\mail\test
  copying src\twisted\mail\test\test_smtp.py -> build\lib.win32-3.5\twisted\mail\test
  copying src\twisted\mail\test\__init__.py -> build\lib.win32-3.5\twisted\mail\test
  creating build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_cache.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_client.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_common.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_dns.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_examples.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_hosts.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_names.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_resolve.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_rfc1982.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_rootresolve.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_server.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_srvconnect.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_tap.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\test_util.py -> build\lib.win32-3.5\twisted\names\test
  copying src\twisted\names\test\__init__.py -> build\lib.win32-3.5\twisted\names\test
  creating build\lib.win32-3.5\twisted\pair\test
  copying src\twisted\pair\test\test_ethernet.py -> build\lib.win32-3.5\twisted\pair\test
  copying src\twisted\pair\test\test_ip.py -> build\lib.win32-3.5\twisted\pair\test
  copying src\twisted\pair\test\test_rawudp.py -> build\lib.win32-3.5\twisted\pair\test
  copying src\twisted\pair\test\test_tuntap.py -> build\lib.win32-3.5\twisted\pair\test
  copying src\twisted\pair\test\__init__.py -> build\lib.win32-3.5\twisted\pair\test
  creating build\lib.win32-3.5\twisted\persisted\test
  copying src\twisted\persisted\test\test_styles.py -> build\lib.win32-3.5\twisted\persisted\test
  copying src\twisted\persisted\test\__init__.py -> build\lib.win32-3.5\twisted\persisted\test
  creating build\lib.win32-3.5\twisted\positioning\test
  copying src\twisted\positioning\test\receiver.py -> build\lib.win32-3.5\twisted\positioning\test
  copying src\twisted\positioning\test\test_base.py -> build\lib.win32-3.5\twisted\positioning\test
  copying src\twisted\positioning\test\test_nmea.py -> build\lib.win32-3.5\twisted\positioning\test
  copying src\twisted\positioning\test\test_sentence.py -> build\lib.win32-3.5\twisted\positioning\test
  copying src\twisted\positioning\test\__init__.py -> build\lib.win32-3.5\twisted\positioning\test
  creating build\lib.win32-3.5\twisted\protocols\haproxy
  copying src\twisted\protocols\haproxy\_exceptions.py -> build\lib.win32-3.5\twisted\protocols\haproxy
  copying src\twisted\protocols\haproxy\_info.py -> build\lib.win32-3.5\twisted\protocols\haproxy
  copying src\twisted\protocols\haproxy\_interfaces.py -> build\lib.win32-3.5\twisted\protocols\haproxy
  copying src\twisted\protocols\haproxy\_parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy
  copying src\twisted\protocols\haproxy\_v1parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy
  copying src\twisted\protocols\haproxy\_v2parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy
  copying src\twisted\protocols\haproxy\_wrapper.py -> build\lib.win32-3.5\twisted\protocols\haproxy
  copying src\twisted\protocols\haproxy\__init__.py -> build\lib.win32-3.5\twisted\protocols\haproxy
  creating build\lib.win32-3.5\twisted\protocols\test
  copying src\twisted\protocols\test\test_basic.py -> build\lib.win32-3.5\twisted\protocols\test
  copying src\twisted\protocols\test\test_tls.py -> build\lib.win32-3.5\twisted\protocols\test
  copying src\twisted\protocols\test\__init__.py -> build\lib.win32-3.5\twisted\protocols\test
  creating build\lib.win32-3.5\twisted\protocols\haproxy\test
  copying src\twisted\protocols\haproxy\test\test_parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy\test
  copying src\twisted\protocols\haproxy\test\test_v1parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy\test
  copying src\twisted\protocols\haproxy\test\test_v2parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy\test
  copying src\twisted\protocols\haproxy\test\test_wrapper.py -> build\lib.win32-3.5\twisted\protocols\haproxy\test
  copying src\twisted\protocols\haproxy\test\__init__.py -> build\lib.win32-3.5\twisted\protocols\haproxy\test
  creating build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\deprecatedattributes.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\modules_helpers.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\pullpipe.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_appdirs.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_components.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_constants.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_deprecate.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_dist3.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_htmlizer.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_inotify.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_runtime.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_sendmsg.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_setup.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_shellcomp.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_syslog.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_systemd.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_textattributes.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_tzhelper.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_url.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_urlpath.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_util.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_versions.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_zippath.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\test_zipstream.py -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\python\test\__init__.py -> build\lib.win32-3.5\twisted\python\test
  creating build\lib.win32-3.5\twisted\runner\test
  copying src\twisted\runner\test\test_inetdconf.py -> build\lib.win32-3.5\twisted\runner\test
  copying src\twisted\runner\test\test_procmon.py -> build\lib.win32-3.5\twisted\runner\test
  copying src\twisted\runner\test\test_procmontap.py -> build\lib.win32-3.5\twisted\runner\test
  copying src\twisted\runner\test\__init__.py -> build\lib.win32-3.5\twisted\runner\test
  creating build\lib.win32-3.5\twisted\scripts\test
  copying src\twisted\scripts\test\test_scripts.py -> build\lib.win32-3.5\twisted\scripts\test
  copying src\twisted\scripts\test\__init__.py -> build\lib.win32-3.5\twisted\scripts\test
  creating build\lib.win32-3.5\twisted\spread\test
  copying src\twisted\spread\test\test_banana.py -> build\lib.win32-3.5\twisted\spread\test
  copying src\twisted\spread\test\test_jelly.py -> build\lib.win32-3.5\twisted\spread\test
  copying src\twisted\spread\test\test_pb.py -> build\lib.win32-3.5\twisted\spread\test
  copying src\twisted\spread\test\test_pbfailure.py -> build\lib.win32-3.5\twisted\spread\test
  copying src\twisted\spread\test\__init__.py -> build\lib.win32-3.5\twisted\spread\test
  creating build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\detests.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\erroneous.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\mockcustomsuite.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\mockcustomsuite2.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\mockcustomsuite3.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\mockdoctest.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\moduleself.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\moduletest.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\novars.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\ordertests.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\packages.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\sample.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\scripttest.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\skipping.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\suppression.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_assertions.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_asyncassertions.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_deferred.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_doctest.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_keyboard.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_loader.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_log.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_output.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_plugins.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_pyunitcompat.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_reporter.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_runner.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_script.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_suppression.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_testcase.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_tests.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_util.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\test_warning.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\weird.py -> build\lib.win32-3.5\twisted\trial\test
  copying src\twisted\trial\test\__init__.py -> build\lib.win32-3.5\twisted\trial\test
  creating build\lib.win32-3.5\twisted\trial\_dist
  copying src\twisted\trial\_dist\distreporter.py -> build\lib.win32-3.5\twisted\trial\_dist
  copying src\twisted\trial\_dist\disttrial.py -> build\lib.win32-3.5\twisted\trial\_dist
  copying src\twisted\trial\_dist\managercommands.py -> build\lib.win32-3.5\twisted\trial\_dist
  copying src\twisted\trial\_dist\options.py -> build\lib.win32-3.5\twisted\trial\_dist
  copying src\twisted\trial\_dist\worker.py -> build\lib.win32-3.5\twisted\trial\_dist
  copying src\twisted\trial\_dist\workercommands.py -> build\lib.win32-3.5\twisted\trial\_dist
  copying src\twisted\trial\_dist\workerreporter.py -> build\lib.win32-3.5\twisted\trial\_dist
  copying src\twisted\trial\_dist\workertrial.py -> build\lib.win32-3.5\twisted\trial\_dist
  copying src\twisted\trial\_dist\__init__.py -> build\lib.win32-3.5\twisted\trial\_dist
  creating build\lib.win32-3.5\twisted\trial\_dist\test
  copying src\twisted\trial\_dist\test\test_distreporter.py -> build\lib.win32-3.5\twisted\trial\_dist\test
  copying src\twisted\trial\_dist\test\test_disttrial.py -> build\lib.win32-3.5\twisted\trial\_dist\test
  copying src\twisted\trial\_dist\test\test_options.py -> build\lib.win32-3.5\twisted\trial\_dist\test
  copying src\twisted\trial\_dist\test\test_worker.py -> build\lib.win32-3.5\twisted\trial\_dist\test
  copying src\twisted\trial\_dist\test\test_workerreporter.py -> build\lib.win32-3.5\twisted\trial\_dist\test
  copying src\twisted\trial\_dist\test\test_workertrial.py -> build\lib.win32-3.5\twisted\trial\_dist\test
  copying src\twisted\trial\_dist\test\__init__.py -> build\lib.win32-3.5\twisted\trial\_dist\test
  creating build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\requesthelper.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_agent.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_cgi.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_distrib.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_error.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_flatten.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_http.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_http2.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_httpauth.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_http_headers.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_newclient.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_proxy.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_resource.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_script.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_stan.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_static.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_tap.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_template.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_util.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_vhost.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_web.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_webclient.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_web__responses.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_wsgi.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\test_xmlrpc.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\_util.py -> build\lib.win32-3.5\twisted\web\test
  copying src\twisted\web\test\__init__.py -> build\lib.win32-3.5\twisted\web\test
  creating build\lib.win32-3.5\twisted\web\_auth
  copying src\twisted\web\_auth\basic.py -> build\lib.win32-3.5\twisted\web\_auth
  copying src\twisted\web\_auth\digest.py -> build\lib.win32-3.5\twisted\web\_auth
  copying src\twisted\web\_auth\wrapper.py -> build\lib.win32-3.5\twisted\web\_auth
  copying src\twisted\web\_auth\__init__.py -> build\lib.win32-3.5\twisted\web\_auth
  creating build\lib.win32-3.5\twisted\words\im
  copying src\twisted\words\im\baseaccount.py -> build\lib.win32-3.5\twisted\words\im
  copying src\twisted\words\im\basechat.py -> build\lib.win32-3.5\twisted\words\im
  copying src\twisted\words\im\basesupport.py -> build\lib.win32-3.5\twisted\words\im
  copying src\twisted\words\im\interfaces.py -> build\lib.win32-3.5\twisted\words\im
  copying src\twisted\words\im\ircsupport.py -> build\lib.win32-3.5\twisted\words\im
  copying src\twisted\words\im\locals.py -> build\lib.win32-3.5\twisted\words\im
  copying src\twisted\words\im\pbsupport.py -> build\lib.win32-3.5\twisted\words\im
  copying src\twisted\words\im\__init__.py -> build\lib.win32-3.5\twisted\words\im
  creating build\lib.win32-3.5\twisted\words\protocols
  copying src\twisted\words\protocols\irc.py -> build\lib.win32-3.5\twisted\words\protocols
  copying src\twisted\words\protocols\__init__.py -> build\lib.win32-3.5\twisted\words\protocols
  creating build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_basechat.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_basesupport.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_domish.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_irc.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_ircsupport.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_irc_service.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_jabberclient.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_jabbercomponent.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_jabbererror.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_jabberjid.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_jabberjstrports.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_jabbersasl.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_jabbersaslmechanisms.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_jabberxmlstream.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_jabberxmppstringprep.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_service.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_xishutil.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_xmlstream.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_xmpproutertap.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\test_xpath.py -> build\lib.win32-3.5\twisted\words\test
  copying src\twisted\words\test\__init__.py -> build\lib.win32-3.5\twisted\words\test
  creating build\lib.win32-3.5\twisted\words\xish
  copying src\twisted\words\xish\domish.py -> build\lib.win32-3.5\twisted\words\xish
  copying src\twisted\words\xish\utility.py -> build\lib.win32-3.5\twisted\words\xish
  copying src\twisted\words\xish\xmlstream.py -> build\lib.win32-3.5\twisted\words\xish
  copying src\twisted\words\xish\xpath.py -> build\lib.win32-3.5\twisted\words\xish
  copying src\twisted\words\xish\xpathparser.py -> build\lib.win32-3.5\twisted\words\xish
  copying src\twisted\words\xish\__init__.py -> build\lib.win32-3.5\twisted\words\xish
  creating build\lib.win32-3.5\twisted\words\protocols\jabber
  copying src\twisted\words\protocols\jabber\client.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
  copying src\twisted\words\protocols\jabber\component.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
  copying src\twisted\words\protocols\jabber\error.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
  copying src\twisted\words\protocols\jabber\ijabber.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
  copying src\twisted\words\protocols\jabber\jid.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
  copying src\twisted\words\protocols\jabber\jstrports.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
  copying src\twisted\words\protocols\jabber\sasl.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
  copying src\twisted\words\protocols\jabber\sasl_mechanisms.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
  copying src\twisted\words\protocols\jabber\xmlstream.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
  copying src\twisted\words\protocols\jabber\xmpp_stringprep.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
  copying src\twisted\words\protocols\jabber\__init__.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
  creating build\lib.win32-3.5\twisted\_threads\test
  copying src\twisted\_threads\test\test_convenience.py -> build\lib.win32-3.5\twisted\_threads\test
  copying src\twisted\_threads\test\test_memory.py -> build\lib.win32-3.5\twisted\_threads\test
  copying src\twisted\_threads\test\test_team.py -> build\lib.win32-3.5\twisted\_threads\test
  copying src\twisted\_threads\test\test_threadworker.py -> build\lib.win32-3.5\twisted\_threads\test
  copying src\twisted\_threads\test\__init__.py -> build\lib.win32-3.5\twisted\_threads\test
  running egg_info
  writing src\Twisted.egg-info\PKG-INFO
  writing requirements to src\Twisted.egg-info\requires.txt
  writing entry points to src\Twisted.egg-info\entry_points.txt
  writing dependency_links to src\Twisted.egg-info\dependency_links.txt
  writing top-level names to src\Twisted.egg-info\top_level.txt
  warning: manifest_maker: standard file '-c' not found

  reading manifest file 'src\Twisted.egg-info\SOURCES.txt'
  reading manifest template 'MANIFEST.in'
  warning: no previously-included files matching '*.misc' found under directory 'src\twisted'
  warning: no previously-included files matching '*.bugfix' found under directory 'src\twisted'
  warning: no previously-included files matching '*.doc' found under directory 'src\twisted'
  warning: no previously-included files matching '*.feature' found under directory 'src\twisted'
  warning: no previously-included files matching '*.removal' found under directory 'src\twisted'
  warning: no previously-included files matching 'NEWS' found under directory 'src\twisted'
  warning: no previously-included files matching 'README' found under directory 'src\twisted'
  warning: no previously-included files matching 'newsfragments' found under directory 'src\twisted'
  warning: no previously-included files found matching 'src\twisted\topfiles\CREDITS'
  warning: no previously-included files found matching 'src\twisted\topfiles\ChangeLog.Old'
  warning: no previously-included files found matching 'pyproject.toml'
  warning: no previously-included files found matching 'codecov.yml'
  warning: no previously-included files found matching 'appveyor.yml'
  no previously-included directories found matching 'bin'
  no previously-included directories found matching 'admin'
  no previously-included directories found matching '.travis'
  warning: no files found matching '*.Quotes' under directory 'docs'
  warning: no previously-included files found matching 'docs\historic\2003'
  warning: no previously-included files matching '*' found under directory 'docs\historic\2003'
  writing manifest file 'src\Twisted.egg-info\SOURCES.txt'
  copying src\twisted\python\_sendmsg.c -> build\lib.win32-3.5\twisted\python
  copying src\twisted\python\twisted-completion.zsh -> build\lib.win32-3.5\twisted\python
  creating build\lib.win32-3.5\twisted\python\_pydoctortemplates
  copying src\twisted\python\_pydoctortemplates\common.html -> build\lib.win32-3.5\twisted\python\_pydoctortemplates
  copying src\twisted\python\_pydoctortemplates\index.html -> build\lib.win32-3.5\twisted\python\_pydoctortemplates
  copying src\twisted\python\_pydoctortemplates\summary.html -> build\lib.win32-3.5\twisted\python\_pydoctortemplates
  copying src\twisted\test\raiser.c -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\raiser.pyx -> build\lib.win32-3.5\twisted\test
  copying src\twisted\test\server.pem -> build\lib.win32-3.5\twisted\test
  copying src\twisted\internet\iocpreactor\build.bat -> build\lib.win32-3.5\twisted\internet\iocpreactor
  copying src\twisted\internet\iocpreactor\notes.txt -> build\lib.win32-3.5\twisted\internet\iocpreactor
  creating build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
  copying src\twisted\internet\iocpreactor\iocpsupport\acceptex.pxi -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
  copying src\twisted\internet\iocpreactor\iocpsupport\connectex.pxi -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
  copying src\twisted\internet\iocpreactor\iocpsupport\iocpsupport.c -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
  copying src\twisted\internet\iocpreactor\iocpsupport\iocpsupport.pyx -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
  copying src\twisted\internet\iocpreactor\iocpsupport\winsock_pointers.c -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
  copying src\twisted\internet\iocpreactor\iocpsupport\winsock_pointers.h -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
  copying src\twisted\internet\iocpreactor\iocpsupport\wsarecv.pxi -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
  copying src\twisted\internet\iocpreactor\iocpsupport\wsasend.pxi -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
  copying src\twisted\internet\test\_awaittests.py.3only -> build\lib.win32-3.5\twisted\internet\test
  copying src\twisted\internet\test\_yieldfromtests.py.3only -> build\lib.win32-3.5\twisted\internet\test
  creating build\lib.win32-3.5\twisted\internet\test\fake_CAs
  copying src\twisted\internet\test\fake_CAs\chain.pem -> build\lib.win32-3.5\twisted\internet\test\fake_CAs
  copying src\twisted\internet\test\fake_CAs\not-a-certificate -> build\lib.win32-3.5\twisted\internet\test\fake_CAs
  copying src\twisted\internet\test\fake_CAs\thing1.pem -> build\lib.win32-3.5\twisted\internet\test\fake_CAs
  copying src\twisted\internet\test\fake_CAs\thing2-duplicate.pem -> build\lib.win32-3.5\twisted\internet\test\fake_CAs
  copying src\twisted\internet\test\fake_CAs\thing2.pem -> build\lib.win32-3.5\twisted\internet\test\fake_CAs
  copying src\twisted\mail\test\rfc822.message -> build\lib.win32-3.5\twisted\mail\test
  copying src\twisted\python\test\_deprecatetests.py.3only -> build\lib.win32-3.5\twisted\python\test
  copying src\twisted\words\im\instancemessenger.glade -> build\lib.win32-3.5\twisted\words\im
  copying src\twisted\words\xish\xpathparser.g -> build\lib.win32-3.5\twisted\words\xish
  running build_ext
  building 'twisted.test.raiser' extension
  error: Unable to find vcvarsall.bat

  ----------------------------------------
  Failed building wheel for Twisted
  Running setup.py clean for Twisted
  Running setup.py bdist_wheel for pycparser ... done
  Stored in directory: C:\Users\Florian\AppData\Local\pip\Cache\wheels\a8\0b\41\dc95621f9d3a0da7bc191b8a71f0e8182ffd3cc5f33ac55005
Successfully built PyDispatcher pycparser
Failed to build Twisted
Installing collected packages: cssselect, lxml, six, w3lib, parsel, asn1crypto, pycparser, cffi, idna, cryptography, pyOpenSSL, pyasn1, pyasn1-modules, attrs, service-identity, PyDispatcher, queuelib, zope.interface, constantly, incremental, Automat, hyperlink, Twisted, scrapy
  Running setup.py install for Twisted ... error
    Complete output from command c:\users\florian\appdata\local\programs\python\python35-32\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\Florian\\AppData\\Local\\Temp\\pip-build-aggcy2ps\\Twisted\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\Florian\AppData\Local\Temp\pip-ojk2ilw4-record\install-record.txt --single-version-externally-managed --compile:
    running install
    running build
    running build_py
    creating build
    creating build\lib.win32-3.5
    creating build\lib.win32-3.5\twisted
    copying src\twisted\copyright.py -> build\lib.win32-3.5\twisted
    copying src\twisted\plugin.py -> build\lib.win32-3.5\twisted
    copying src\twisted\_version.py -> build\lib.win32-3.5\twisted
    copying src\twisted\__init__.py -> build\lib.win32-3.5\twisted
    copying src\twisted\__main__.py -> build\lib.win32-3.5\twisted
    creating build\lib.win32-3.5\twisted\application
    copying src\twisted\application\app.py -> build\lib.win32-3.5\twisted\application
    copying src\twisted\application\internet.py -> build\lib.win32-3.5\twisted\application
    copying src\twisted\application\reactors.py -> build\lib.win32-3.5\twisted\application
    copying src\twisted\application\service.py -> build\lib.win32-3.5\twisted\application
    copying src\twisted\application\strports.py -> build\lib.win32-3.5\twisted\application
    copying src\twisted\application\__init__.py -> build\lib.win32-3.5\twisted\application
    creating build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\avatar.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\checkers.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\endpoints.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\error.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\interfaces.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\ls.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\manhole.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\manhole_ssh.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\manhole_tap.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\mixin.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\recvline.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\stdio.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\tap.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\telnet.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\ttymodes.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\unix.py -> build\lib.win32-3.5\twisted\conch
    copying src\twisted\conch\__init__.py -> build\lib.win32-3.5\twisted\conch
    creating build\lib.win32-3.5\twisted\cred
    copying src\twisted\cred\checkers.py -> build\lib.win32-3.5\twisted\cred
    copying src\twisted\cred\credentials.py -> build\lib.win32-3.5\twisted\cred
    copying src\twisted\cred\error.py -> build\lib.win32-3.5\twisted\cred
    copying src\twisted\cred\portal.py -> build\lib.win32-3.5\twisted\cred
    copying src\twisted\cred\strcred.py -> build\lib.win32-3.5\twisted\cred
    copying src\twisted\cred\_digest.py -> build\lib.win32-3.5\twisted\cred
    copying src\twisted\cred\__init__.py -> build\lib.win32-3.5\twisted\cred
    creating build\lib.win32-3.5\twisted\enterprise
    copying src\twisted\enterprise\adbapi.py -> build\lib.win32-3.5\twisted\enterprise
    copying src\twisted\enterprise\__init__.py -> build\lib.win32-3.5\twisted\enterprise
    creating build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\abstract.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\address.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\asyncioreactor.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\base.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\cfreactor.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\default.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\defer.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\endpoints.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\epollreactor.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\error.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\fdesc.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\gireactor.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\gtk3reactor.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\inotify.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\interfaces.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\kqreactor.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\main.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\pollreactor.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\posixbase.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\process.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\protocol.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\reactor.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\selectreactor.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\serialport.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\ssl.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\stdio.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\task.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\tcp.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\threads.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\udp.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\unix.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\utils.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\win32eventreactor.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\wxreactor.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\wxsupport.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_baseprocess.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_dumbwin32proc.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_glibbase.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_idna.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_newtls.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_pollingfile.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_posixserialport.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_posixstdio.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_producer_helpers.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_resolver.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_signals.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_sslverify.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_threadedselect.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_win32serialport.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\_win32stdio.py -> build\lib.win32-3.5\twisted\internet
    copying src\twisted\internet\__init__.py -> build\lib.win32-3.5\twisted\internet
    creating build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_buffer.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_file.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_filter.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_flatten.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_format.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_global.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_io.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_json.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_legacy.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_levels.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_logger.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_observer.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_stdlib.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\_util.py -> build\lib.win32-3.5\twisted\logger
    copying src\twisted\logger\__init__.py -> build\lib.win32-3.5\twisted\logger
    creating build\lib.win32-3.5\twisted\mail
    copying src\twisted\mail\interfaces.py -> build\lib.win32-3.5\twisted\mail
    copying src\twisted\mail\smtp.py -> build\lib.win32-3.5\twisted\mail
    copying src\twisted\mail\_cred.py -> build\lib.win32-3.5\twisted\mail
    copying src\twisted\mail\_except.py -> build\lib.win32-3.5\twisted\mail
    creating build\lib.win32-3.5\twisted\names
    copying src\twisted\names\authority.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\cache.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\client.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\common.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\dns.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\error.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\hosts.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\resolve.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\root.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\secondary.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\server.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\srvconnect.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\tap.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\_rfc1982.py -> build\lib.win32-3.5\twisted\names
    copying src\twisted\names\__init__.py -> build\lib.win32-3.5\twisted\names
    creating build\lib.win32-3.5\twisted\pair
    copying src\twisted\pair\ethernet.py -> build\lib.win32-3.5\twisted\pair
    copying src\twisted\pair\ip.py -> build\lib.win32-3.5\twisted\pair
    copying src\twisted\pair\raw.py -> build\lib.win32-3.5\twisted\pair
    copying src\twisted\pair\rawudp.py -> build\lib.win32-3.5\twisted\pair
    copying src\twisted\pair\testing.py -> build\lib.win32-3.5\twisted\pair
    copying src\twisted\pair\tuntap.py -> build\lib.win32-3.5\twisted\pair
    copying src\twisted\pair\__init__.py -> build\lib.win32-3.5\twisted\pair
    creating build\lib.win32-3.5\twisted\persisted
    copying src\twisted\persisted\aot.py -> build\lib.win32-3.5\twisted\persisted
    copying src\twisted\persisted\crefutil.py -> build\lib.win32-3.5\twisted\persisted
    copying src\twisted\persisted\dirdbm.py -> build\lib.win32-3.5\twisted\persisted
    copying src\twisted\persisted\sob.py -> build\lib.win32-3.5\twisted\persisted
    copying src\twisted\persisted\styles.py -> build\lib.win32-3.5\twisted\persisted
    copying src\twisted\persisted\__init__.py -> build\lib.win32-3.5\twisted\persisted
    creating build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\cred_anonymous.py -> build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\cred_file.py -> build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\cred_memory.py -> build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\cred_sshkeys.py -> build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\cred_unix.py -> build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\twisted_conch.py -> build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\twisted_core.py -> build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\twisted_ftp.py -> build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\twisted_reactors.py -> build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\twisted_trial.py -> build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\twisted_web.py -> build\lib.win32-3.5\twisted\plugins
    copying src\twisted\plugins\__init__.py -> build\lib.win32-3.5\twisted\plugins
    creating build\lib.win32-3.5\twisted\positioning
    copying src\twisted\positioning\base.py -> build\lib.win32-3.5\twisted\positioning
    copying src\twisted\positioning\ipositioning.py -> build\lib.win32-3.5\twisted\positioning
    copying src\twisted\positioning\nmea.py -> build\lib.win32-3.5\twisted\positioning
    copying src\twisted\positioning\_sentence.py -> build\lib.win32-3.5\twisted\positioning
    copying src\twisted\positioning\__init__.py -> build\lib.win32-3.5\twisted\positioning
    creating build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\amp.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\basic.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\dict.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\finger.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\ftp.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\htb.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\loopback.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\memcache.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\pcp.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\policies.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\portforward.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\postfix.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\sip.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\socks.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\stateful.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\tls.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\wire.py -> build\lib.win32-3.5\twisted\protocols
    copying src\twisted\protocols\__init__.py -> build\lib.win32-3.5\twisted\protocols
    creating build\lib.win32-3.5\twisted\python
    copying src\twisted\python\compat.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\components.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\constants.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\context.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\deprecate.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\failure.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\fakepwd.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\filepath.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\htmlizer.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\lockfile.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\log.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\logfile.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\modules.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\monkey.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\procutils.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\randbytes.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\reflect.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\roots.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\runtime.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\sendmsg.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\syslog.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\systemd.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\text.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\threadable.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\threadpool.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\url.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\urlpath.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\usage.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\util.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\versions.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\win32.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\zippath.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\zipstream.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\_appdirs.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\_inotify.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\_oldstyle.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\_setup.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\_shellcomp.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\_textattributes.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\_tzhelper.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\_url.py -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\__init__.py -> build\lib.win32-3.5\twisted\python
    creating build\lib.win32-3.5\twisted\runner
    copying src\twisted\runner\inetd.py -> build\lib.win32-3.5\twisted\runner
    copying src\twisted\runner\inetdconf.py -> build\lib.win32-3.5\twisted\runner
    copying src\twisted\runner\inetdtap.py -> build\lib.win32-3.5\twisted\runner
    copying src\twisted\runner\procmon.py -> build\lib.win32-3.5\twisted\runner
    copying src\twisted\runner\procmontap.py -> build\lib.win32-3.5\twisted\runner
    copying src\twisted\runner\__init__.py -> build\lib.win32-3.5\twisted\runner
    creating build\lib.win32-3.5\twisted\scripts
    copying src\twisted\scripts\htmlizer.py -> build\lib.win32-3.5\twisted\scripts
    copying src\twisted\scripts\trial.py -> build\lib.win32-3.5\twisted\scripts
    copying src\twisted\scripts\twistd.py -> build\lib.win32-3.5\twisted\scripts
    copying src\twisted\scripts\_twistd_unix.py -> build\lib.win32-3.5\twisted\scripts
    copying src\twisted\scripts\_twistw.py -> build\lib.win32-3.5\twisted\scripts
    copying src\twisted\scripts\__init__.py -> build\lib.win32-3.5\twisted\scripts
    creating build\lib.win32-3.5\twisted\spread
    copying src\twisted\spread\banana.py -> build\lib.win32-3.5\twisted\spread
    copying src\twisted\spread\flavors.py -> build\lib.win32-3.5\twisted\spread
    copying src\twisted\spread\interfaces.py -> build\lib.win32-3.5\twisted\spread
    copying src\twisted\spread\jelly.py -> build\lib.win32-3.5\twisted\spread
    copying src\twisted\spread\pb.py -> build\lib.win32-3.5\twisted\spread
    copying src\twisted\spread\publish.py -> build\lib.win32-3.5\twisted\spread
    copying src\twisted\spread\util.py -> build\lib.win32-3.5\twisted\spread
    copying src\twisted\spread\__init__.py -> build\lib.win32-3.5\twisted\spread
    creating build\lib.win32-3.5\twisted\tap
    copying src\twisted\tap\ftp.py -> build\lib.win32-3.5\twisted\tap
    copying src\twisted\tap\__init__.py -> build\lib.win32-3.5\twisted\tap
    creating build\lib.win32-3.5\twisted\test
    copying src\twisted\test\iosim.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\mock_win32process.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\plugin_basic.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\plugin_extra1.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\plugin_extra2.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_cmdline.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_echoer.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_fds.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_getargv.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_getenv.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_linger.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_reader.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_signal.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_stdinreader.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_tester.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_tty.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\process_twisted.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\proto_helpers.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\reflect_helper_IE.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\reflect_helper_VE.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\reflect_helper_ZDE.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\ssl_helpers.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\stdio_test_consumer.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\stdio_test_halfclose.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\stdio_test_hostpeer.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\stdio_test_lastwrite.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\stdio_test_loseconn.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\stdio_test_producer.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\stdio_test_write.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\stdio_test_writeseq.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\testutils.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_abstract.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_adbapi.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_amp.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_application.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_compat.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_context.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_cooperator.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_defer.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_defgen.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_dict.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_dirdbm.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_error.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_factories.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_failure.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_fdesc.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_finger.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_ftp.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_ftp_options.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_htb.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_internet.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_iosim.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_iutils.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_lockfile.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_log.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_logfile.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_loopback.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_main.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_memcache.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_modules.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_monkey.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_nooldstyle.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_paths.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_pcp.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_persisted.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_plugin.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_policies.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_postfix.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_process.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_protocols.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_randbytes.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_reflect.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_roots.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_sip.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_sob.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_socks.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_ssl.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_sslverify.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_stateful.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_stdio.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_stringtransport.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_strports.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_task.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_tcp.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_tcp_internals.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_text.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_threadable.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_threadpool.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_threads.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_tpfile.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_twistd.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_twisted.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_udp.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_unix.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\test_usage.py -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\__init__.py -> build\lib.win32-3.5\twisted\test
    creating build\lib.win32-3.5\twisted\trial
    copying src\twisted\trial\itrial.py -> build\lib.win32-3.5\twisted\trial
    copying src\twisted\trial\reporter.py -> build\lib.win32-3.5\twisted\trial
    copying src\twisted\trial\runner.py -> build\lib.win32-3.5\twisted\trial
    copying src\twisted\trial\unittest.py -> build\lib.win32-3.5\twisted\trial
    copying src\twisted\trial\util.py -> build\lib.win32-3.5\twisted\trial
    copying src\twisted\trial\_asyncrunner.py -> build\lib.win32-3.5\twisted\trial
    copying src\twisted\trial\_asynctest.py -> build\lib.win32-3.5\twisted\trial
    copying src\twisted\trial\_synctest.py -> build\lib.win32-3.5\twisted\trial
    copying src\twisted\trial\__init__.py -> build\lib.win32-3.5\twisted\trial
    copying src\twisted\trial\__main__.py -> build\lib.win32-3.5\twisted\trial
    creating build\lib.win32-3.5\twisted\web
    copying src\twisted\web\client.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\demo.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\distrib.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\error.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\guard.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\html.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\http.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\http_headers.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\iweb.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\proxy.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\resource.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\script.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\server.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\static.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\tap.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\template.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\twcgi.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\util.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\vhost.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\wsgi.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\xmlrpc.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\_element.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\_flatten.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\_http2.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\_newclient.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\_responses.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\_stan.py -> build\lib.win32-3.5\twisted\web
    copying src\twisted\web\__init__.py -> build\lib.win32-3.5\twisted\web
    creating build\lib.win32-3.5\twisted\words
    copying src\twisted\words\ewords.py -> build\lib.win32-3.5\twisted\words
    copying src\twisted\words\iwords.py -> build\lib.win32-3.5\twisted\words
    copying src\twisted\words\service.py -> build\lib.win32-3.5\twisted\words
    copying src\twisted\words\xmpproutertap.py -> build\lib.win32-3.5\twisted\words
    copying src\twisted\words\__init__.py -> build\lib.win32-3.5\twisted\words
    creating build\lib.win32-3.5\twisted\_threads
    copying src\twisted\_threads\_convenience.py -> build\lib.win32-3.5\twisted\_threads
    copying src\twisted\_threads\_ithreads.py -> build\lib.win32-3.5\twisted\_threads
    copying src\twisted\_threads\_memory.py -> build\lib.win32-3.5\twisted\_threads
    copying src\twisted\_threads\_pool.py -> build\lib.win32-3.5\twisted\_threads
    copying src\twisted\_threads\_team.py -> build\lib.win32-3.5\twisted\_threads
    copying src\twisted\_threads\_threadworker.py -> build\lib.win32-3.5\twisted\_threads
    copying src\twisted\_threads\__init__.py -> build\lib.win32-3.5\twisted\_threads
    creating build\lib.win32-3.5\twisted\application\runner
    copying src\twisted\application\runner\_exit.py -> build\lib.win32-3.5\twisted\application\runner
    copying src\twisted\application\runner\_pidfile.py -> build\lib.win32-3.5\twisted\application\runner
    copying src\twisted\application\runner\_runner.py -> build\lib.win32-3.5\twisted\application\runner
    copying src\twisted\application\runner\__init__.py -> build\lib.win32-3.5\twisted\application\runner
    creating build\lib.win32-3.5\twisted\application\test
    copying src\twisted\application\test\test_internet.py -> build\lib.win32-3.5\twisted\application\test
    copying src\twisted\application\test\test_service.py -> build\lib.win32-3.5\twisted\application\test
    copying src\twisted\application\test\__init__.py -> build\lib.win32-3.5\twisted\application\test
    creating build\lib.win32-3.5\twisted\application\twist
    copying src\twisted\application\twist\_options.py -> build\lib.win32-3.5\twisted\application\twist
    copying src\twisted\application\twist\_twist.py -> build\lib.win32-3.5\twisted\application\twist
    copying src\twisted\application\twist\__init__.py -> build\lib.win32-3.5\twisted\application\twist
    creating build\lib.win32-3.5\twisted\application\runner\test
    copying src\twisted\application\runner\test\mockreactor.py -> build\lib.win32-3.5\twisted\application\runner\test
    copying src\twisted\application\runner\test\test_exit.py -> build\lib.win32-3.5\twisted\application\runner\test
    copying src\twisted\application\runner\test\test_pidfile.py -> build\lib.win32-3.5\twisted\application\runner\test
    copying src\twisted\application\runner\test\test_runner.py -> build\lib.win32-3.5\twisted\application\runner\test
    copying src\twisted\application\runner\test\__init__.py -> build\lib.win32-3.5\twisted\application\runner\test
    creating build\lib.win32-3.5\twisted\application\twist\test
    copying src\twisted\application\twist\test\test_options.py -> build\lib.win32-3.5\twisted\application\twist\test
    copying src\twisted\application\twist\test\test_twist.py -> build\lib.win32-3.5\twisted\application\twist\test
    copying src\twisted\application\twist\test\__init__.py -> build\lib.win32-3.5\twisted\application\twist\test
    creating build\lib.win32-3.5\twisted\conch\client
    copying src\twisted\conch\client\agent.py -> build\lib.win32-3.5\twisted\conch\client
    copying src\twisted\conch\client\connect.py -> build\lib.win32-3.5\twisted\conch\client
    copying src\twisted\conch\client\default.py -> build\lib.win32-3.5\twisted\conch\client
    copying src\twisted\conch\client\direct.py -> build\lib.win32-3.5\twisted\conch\client
    copying src\twisted\conch\client\knownhosts.py -> build\lib.win32-3.5\twisted\conch\client
    copying src\twisted\conch\client\options.py -> build\lib.win32-3.5\twisted\conch\client
    copying src\twisted\conch\client\__init__.py -> build\lib.win32-3.5\twisted\conch\client
    creating build\lib.win32-3.5\twisted\conch\insults
    copying src\twisted\conch\insults\client.py -> build\lib.win32-3.5\twisted\conch\insults
    copying src\twisted\conch\insults\colors.py -> build\lib.win32-3.5\twisted\conch\insults
    copying src\twisted\conch\insults\helper.py -> build\lib.win32-3.5\twisted\conch\insults
    copying src\twisted\conch\insults\insults.py -> build\lib.win32-3.5\twisted\conch\insults
    copying src\twisted\conch\insults\text.py -> build\lib.win32-3.5\twisted\conch\insults
    copying src\twisted\conch\insults\window.py -> build\lib.win32-3.5\twisted\conch\insults
    copying src\twisted\conch\insults\__init__.py -> build\lib.win32-3.5\twisted\conch\insults
    creating build\lib.win32-3.5\twisted\conch\openssh_compat
    copying src\twisted\conch\openssh_compat\factory.py -> build\lib.win32-3.5\twisted\conch\openssh_compat
    copying src\twisted\conch\openssh_compat\primes.py -> build\lib.win32-3.5\twisted\conch\openssh_compat
    copying src\twisted\conch\openssh_compat\__init__.py -> build\lib.win32-3.5\twisted\conch\openssh_compat
    creating build\lib.win32-3.5\twisted\conch\scripts
    copying src\twisted\conch\scripts\cftp.py -> build\lib.win32-3.5\twisted\conch\scripts
    copying src\twisted\conch\scripts\ckeygen.py -> build\lib.win32-3.5\twisted\conch\scripts
    copying src\twisted\conch\scripts\conch.py -> build\lib.win32-3.5\twisted\conch\scripts
    copying src\twisted\conch\scripts\tkconch.py -> build\lib.win32-3.5\twisted\conch\scripts
    copying src\twisted\conch\scripts\__init__.py -> build\lib.win32-3.5\twisted\conch\scripts
    creating build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\address.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\agent.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\channel.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\common.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\connection.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\factory.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\filetransfer.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\forwarding.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\keys.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\service.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\session.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\sexpy.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\transport.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\userauth.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\_cryptography_backports.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\_kex.py -> build\lib.win32-3.5\twisted\conch\ssh
    copying src\twisted\conch\ssh\__init__.py -> build\lib.win32-3.5\twisted\conch\ssh
    creating build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\keydata.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\loopback.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_address.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_agent.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_cftp.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_channel.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_checkers.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_ckeygen.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_conch.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_connection.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_default.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_endpoints.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_filetransfer.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_forwarding.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_helper.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_insults.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_keys.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_knownhosts.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_manhole.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_manhole_tap.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_mixin.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_openssh_compat.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_recvline.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_scripts.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_session.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_ssh.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_tap.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_telnet.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_text.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_transport.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_unix.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_userauth.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\test_window.py -> build\lib.win32-3.5\twisted\conch\test
    copying src\twisted\conch\test\__init__.py -> build\lib.win32-3.5\twisted\conch\test
    creating build\lib.win32-3.5\twisted\conch\ui
    copying src\twisted\conch\ui\ansi.py -> build\lib.win32-3.5\twisted\conch\ui
    copying src\twisted\conch\ui\tkvt100.py -> build\lib.win32-3.5\twisted\conch\ui
    copying src\twisted\conch\ui\__init__.py -> build\lib.win32-3.5\twisted\conch\ui
    creating build\lib.win32-3.5\twisted\cred\test
    copying src\twisted\cred\test\test_cramauth.py -> build\lib.win32-3.5\twisted\cred\test
    copying src\twisted\cred\test\test_cred.py -> build\lib.win32-3.5\twisted\cred\test
    copying src\twisted\cred\test\test_digestauth.py -> build\lib.win32-3.5\twisted\cred\test
    copying src\twisted\cred\test\test_simpleauth.py -> build\lib.win32-3.5\twisted\cred\test
    copying src\twisted\cred\test\test_strcred.py -> build\lib.win32-3.5\twisted\cred\test
    copying src\twisted\cred\test\__init__.py -> build\lib.win32-3.5\twisted\cred\test
    creating build\lib.win32-3.5\twisted\internet\iocpreactor
    copying src\twisted\internet\iocpreactor\abstract.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
    copying src\twisted\internet\iocpreactor\const.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
    copying src\twisted\internet\iocpreactor\interfaces.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
    copying src\twisted\internet\iocpreactor\reactor.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
    copying src\twisted\internet\iocpreactor\setup.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
    copying src\twisted\internet\iocpreactor\tcp.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
    copying src\twisted\internet\iocpreactor\udp.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
    copying src\twisted\internet\iocpreactor\__init__.py -> build\lib.win32-3.5\twisted\internet\iocpreactor
    creating build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\connectionmixins.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\fakeendpoint.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\modulehelpers.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\process_cli.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\process_helper.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\reactormixins.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_abstract.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_address.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_base.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_baseprocess.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_core.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_coroutines.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_default.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_endpoints.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_epollreactor.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_fdset.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_filedescriptor.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_gireactor.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_glibbase.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_inlinecb.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_inotify.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_iocp.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_kqueuereactor.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_main.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_newtls.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_pollingfile.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_posixbase.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_posixprocess.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_process.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_protocol.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_resolver.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_serialport.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_sigchld.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_socket.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_stdio.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_tcp.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_threads.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_time.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_tls.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_udp.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_udp_internals.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_unix.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\test_win32events.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\_posixifaces.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\_win32ifaces.py -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\__init__.py -> build\lib.win32-3.5\twisted\internet\test
    creating build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_buffer.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_file.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_filter.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_flatten.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_format.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_global.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_io.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_json.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_legacy.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_levels.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_logger.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_observer.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_stdlib.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\test_util.py -> build\lib.win32-3.5\twisted\logger\test
    copying src\twisted\logger\test\__init__.py -> build\lib.win32-3.5\twisted\logger\test
    creating build\lib.win32-3.5\twisted\mail\test
    copying src\twisted\mail\test\test_smtp.py -> build\lib.win32-3.5\twisted\mail\test
    copying src\twisted\mail\test\__init__.py -> build\lib.win32-3.5\twisted\mail\test
    creating build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_cache.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_client.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_common.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_dns.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_examples.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_hosts.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_names.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_resolve.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_rfc1982.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_rootresolve.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_server.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_srvconnect.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_tap.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\test_util.py -> build\lib.win32-3.5\twisted\names\test
    copying src\twisted\names\test\__init__.py -> build\lib.win32-3.5\twisted\names\test
    creating build\lib.win32-3.5\twisted\pair\test
    copying src\twisted\pair\test\test_ethernet.py -> build\lib.win32-3.5\twisted\pair\test
    copying src\twisted\pair\test\test_ip.py -> build\lib.win32-3.5\twisted\pair\test
    copying src\twisted\pair\test\test_rawudp.py -> build\lib.win32-3.5\twisted\pair\test
    copying src\twisted\pair\test\test_tuntap.py -> build\lib.win32-3.5\twisted\pair\test
    copying src\twisted\pair\test\__init__.py -> build\lib.win32-3.5\twisted\pair\test
    creating build\lib.win32-3.5\twisted\persisted\test
    copying src\twisted\persisted\test\test_styles.py -> build\lib.win32-3.5\twisted\persisted\test
    copying src\twisted\persisted\test\__init__.py -> build\lib.win32-3.5\twisted\persisted\test
    creating build\lib.win32-3.5\twisted\positioning\test
    copying src\twisted\positioning\test\receiver.py -> build\lib.win32-3.5\twisted\positioning\test
    copying src\twisted\positioning\test\test_base.py -> build\lib.win32-3.5\twisted\positioning\test
    copying src\twisted\positioning\test\test_nmea.py -> build\lib.win32-3.5\twisted\positioning\test
    copying src\twisted\positioning\test\test_sentence.py -> build\lib.win32-3.5\twisted\positioning\test
    copying src\twisted\positioning\test\__init__.py -> build\lib.win32-3.5\twisted\positioning\test
    creating build\lib.win32-3.5\twisted\protocols\haproxy
    copying src\twisted\protocols\haproxy\_exceptions.py -> build\lib.win32-3.5\twisted\protocols\haproxy
    copying src\twisted\protocols\haproxy\_info.py -> build\lib.win32-3.5\twisted\protocols\haproxy
    copying src\twisted\protocols\haproxy\_interfaces.py -> build\lib.win32-3.5\twisted\protocols\haproxy
    copying src\twisted\protocols\haproxy\_parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy
    copying src\twisted\protocols\haproxy\_v1parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy
    copying src\twisted\protocols\haproxy\_v2parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy
    copying src\twisted\protocols\haproxy\_wrapper.py -> build\lib.win32-3.5\twisted\protocols\haproxy
    copying src\twisted\protocols\haproxy\__init__.py -> build\lib.win32-3.5\twisted\protocols\haproxy
    creating build\lib.win32-3.5\twisted\protocols\test
    copying src\twisted\protocols\test\test_basic.py -> build\lib.win32-3.5\twisted\protocols\test
    copying src\twisted\protocols\test\test_tls.py -> build\lib.win32-3.5\twisted\protocols\test
    copying src\twisted\protocols\test\__init__.py -> build\lib.win32-3.5\twisted\protocols\test
    creating build\lib.win32-3.5\twisted\protocols\haproxy\test
    copying src\twisted\protocols\haproxy\test\test_parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy\test
    copying src\twisted\protocols\haproxy\test\test_v1parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy\test
    copying src\twisted\protocols\haproxy\test\test_v2parser.py -> build\lib.win32-3.5\twisted\protocols\haproxy\test
    copying src\twisted\protocols\haproxy\test\test_wrapper.py -> build\lib.win32-3.5\twisted\protocols\haproxy\test
    copying src\twisted\protocols\haproxy\test\__init__.py -> build\lib.win32-3.5\twisted\protocols\haproxy\test
    creating build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\deprecatedattributes.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\modules_helpers.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\pullpipe.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_appdirs.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_components.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_constants.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_deprecate.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_dist3.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_htmlizer.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_inotify.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_runtime.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_sendmsg.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_setup.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_shellcomp.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_syslog.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_systemd.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_textattributes.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_tzhelper.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_url.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_urlpath.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_util.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_versions.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_zippath.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\test_zipstream.py -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\python\test\__init__.py -> build\lib.win32-3.5\twisted\python\test
    creating build\lib.win32-3.5\twisted\runner\test
    copying src\twisted\runner\test\test_inetdconf.py -> build\lib.win32-3.5\twisted\runner\test
    copying src\twisted\runner\test\test_procmon.py -> build\lib.win32-3.5\twisted\runner\test
    copying src\twisted\runner\test\test_procmontap.py -> build\lib.win32-3.5\twisted\runner\test
    copying src\twisted\runner\test\__init__.py -> build\lib.win32-3.5\twisted\runner\test
    creating build\lib.win32-3.5\twisted\scripts\test
    copying src\twisted\scripts\test\test_scripts.py -> build\lib.win32-3.5\twisted\scripts\test
    copying src\twisted\scripts\test\__init__.py -> build\lib.win32-3.5\twisted\scripts\test
    creating build\lib.win32-3.5\twisted\spread\test
    copying src\twisted\spread\test\test_banana.py -> build\lib.win32-3.5\twisted\spread\test
    copying src\twisted\spread\test\test_jelly.py -> build\lib.win32-3.5\twisted\spread\test
    copying src\twisted\spread\test\test_pb.py -> build\lib.win32-3.5\twisted\spread\test
    copying src\twisted\spread\test\test_pbfailure.py -> build\lib.win32-3.5\twisted\spread\test
    copying src\twisted\spread\test\__init__.py -> build\lib.win32-3.5\twisted\spread\test
    creating build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\detests.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\erroneous.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\mockcustomsuite.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\mockcustomsuite2.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\mockcustomsuite3.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\mockdoctest.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\moduleself.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\moduletest.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\novars.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\ordertests.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\packages.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\sample.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\scripttest.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\skipping.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\suppression.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_assertions.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_asyncassertions.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_deferred.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_doctest.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_keyboard.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_loader.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_log.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_output.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_plugins.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_pyunitcompat.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_reporter.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_runner.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_script.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_suppression.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_testcase.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_tests.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_util.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\test_warning.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\weird.py -> build\lib.win32-3.5\twisted\trial\test
    copying src\twisted\trial\test\__init__.py -> build\lib.win32-3.5\twisted\trial\test
    creating build\lib.win32-3.5\twisted\trial\_dist
    copying src\twisted\trial\_dist\distreporter.py -> build\lib.win32-3.5\twisted\trial\_dist
    copying src\twisted\trial\_dist\disttrial.py -> build\lib.win32-3.5\twisted\trial\_dist
    copying src\twisted\trial\_dist\managercommands.py -> build\lib.win32-3.5\twisted\trial\_dist
    copying src\twisted\trial\_dist\options.py -> build\lib.win32-3.5\twisted\trial\_dist
    copying src\twisted\trial\_dist\worker.py -> build\lib.win32-3.5\twisted\trial\_dist
    copying src\twisted\trial\_dist\workercommands.py -> build\lib.win32-3.5\twisted\trial\_dist
    copying src\twisted\trial\_dist\workerreporter.py -> build\lib.win32-3.5\twisted\trial\_dist
    copying src\twisted\trial\_dist\workertrial.py -> build\lib.win32-3.5\twisted\trial\_dist
    copying src\twisted\trial\_dist\__init__.py -> build\lib.win32-3.5\twisted\trial\_dist
    creating build\lib.win32-3.5\twisted\trial\_dist\test
    copying src\twisted\trial\_dist\test\test_distreporter.py -> build\lib.win32-3.5\twisted\trial\_dist\test
    copying src\twisted\trial\_dist\test\test_disttrial.py -> build\lib.win32-3.5\twisted\trial\_dist\test
    copying src\twisted\trial\_dist\test\test_options.py -> build\lib.win32-3.5\twisted\trial\_dist\test
    copying src\twisted\trial\_dist\test\test_worker.py -> build\lib.win32-3.5\twisted\trial\_dist\test
    copying src\twisted\trial\_dist\test\test_workerreporter.py -> build\lib.win32-3.5\twisted\trial\_dist\test
    copying src\twisted\trial\_dist\test\test_workertrial.py -> build\lib.win32-3.5\twisted\trial\_dist\test
    copying src\twisted\trial\_dist\test\__init__.py -> build\lib.win32-3.5\twisted\trial\_dist\test
    creating build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\requesthelper.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_agent.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_cgi.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_distrib.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_error.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_flatten.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_http.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_http2.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_httpauth.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_http_headers.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_newclient.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_proxy.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_resource.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_script.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_stan.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_static.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_tap.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_template.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_util.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_vhost.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_web.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_webclient.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_web__responses.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_wsgi.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\test_xmlrpc.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\_util.py -> build\lib.win32-3.5\twisted\web\test
    copying src\twisted\web\test\__init__.py -> build\lib.win32-3.5\twisted\web\test
    creating build\lib.win32-3.5\twisted\web\_auth
    copying src\twisted\web\_auth\basic.py -> build\lib.win32-3.5\twisted\web\_auth
    copying src\twisted\web\_auth\digest.py -> build\lib.win32-3.5\twisted\web\_auth
    copying src\twisted\web\_auth\wrapper.py -> build\lib.win32-3.5\twisted\web\_auth
    copying src\twisted\web\_auth\__init__.py -> build\lib.win32-3.5\twisted\web\_auth
    creating build\lib.win32-3.5\twisted\words\im
    copying src\twisted\words\im\baseaccount.py -> build\lib.win32-3.5\twisted\words\im
    copying src\twisted\words\im\basechat.py -> build\lib.win32-3.5\twisted\words\im
    copying src\twisted\words\im\basesupport.py -> build\lib.win32-3.5\twisted\words\im
    copying src\twisted\words\im\interfaces.py -> build\lib.win32-3.5\twisted\words\im
    copying src\twisted\words\im\ircsupport.py -> build\lib.win32-3.5\twisted\words\im
    copying src\twisted\words\im\locals.py -> build\lib.win32-3.5\twisted\words\im
    copying src\twisted\words\im\pbsupport.py -> build\lib.win32-3.5\twisted\words\im
    copying src\twisted\words\im\__init__.py -> build\lib.win32-3.5\twisted\words\im
    creating build\lib.win32-3.5\twisted\words\protocols
    copying src\twisted\words\protocols\irc.py -> build\lib.win32-3.5\twisted\words\protocols
    copying src\twisted\words\protocols\__init__.py -> build\lib.win32-3.5\twisted\words\protocols
    creating build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_basechat.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_basesupport.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_domish.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_irc.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_ircsupport.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_irc_service.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_jabberclient.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_jabbercomponent.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_jabbererror.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_jabberjid.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_jabberjstrports.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_jabbersasl.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_jabbersaslmechanisms.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_jabberxmlstream.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_jabberxmppstringprep.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_service.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_xishutil.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_xmlstream.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_xmpproutertap.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\test_xpath.py -> build\lib.win32-3.5\twisted\words\test
    copying src\twisted\words\test\__init__.py -> build\lib.win32-3.5\twisted\words\test
    creating build\lib.win32-3.5\twisted\words\xish
    copying src\twisted\words\xish\domish.py -> build\lib.win32-3.5\twisted\words\xish
    copying src\twisted\words\xish\utility.py -> build\lib.win32-3.5\twisted\words\xish
    copying src\twisted\words\xish\xmlstream.py -> build\lib.win32-3.5\twisted\words\xish
    copying src\twisted\words\xish\xpath.py -> build\lib.win32-3.5\twisted\words\xish
    copying src\twisted\words\xish\xpathparser.py -> build\lib.win32-3.5\twisted\words\xish
    copying src\twisted\words\xish\__init__.py -> build\lib.win32-3.5\twisted\words\xish
    creating build\lib.win32-3.5\twisted\words\protocols\jabber
    copying src\twisted\words\protocols\jabber\client.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
    copying src\twisted\words\protocols\jabber\component.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
    copying src\twisted\words\protocols\jabber\error.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
    copying src\twisted\words\protocols\jabber\ijabber.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
    copying src\twisted\words\protocols\jabber\jid.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
    copying src\twisted\words\protocols\jabber\jstrports.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
    copying src\twisted\words\protocols\jabber\sasl.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
    copying src\twisted\words\protocols\jabber\sasl_mechanisms.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
    copying src\twisted\words\protocols\jabber\xmlstream.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
    copying src\twisted\words\protocols\jabber\xmpp_stringprep.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
    copying src\twisted\words\protocols\jabber\__init__.py -> build\lib.win32-3.5\twisted\words\protocols\jabber
    creating build\lib.win32-3.5\twisted\_threads\test
    copying src\twisted\_threads\test\test_convenience.py -> build\lib.win32-3.5\twisted\_threads\test
    copying src\twisted\_threads\test\test_memory.py -> build\lib.win32-3.5\twisted\_threads\test
    copying src\twisted\_threads\test\test_team.py -> build\lib.win32-3.5\twisted\_threads\test
    copying src\twisted\_threads\test\test_threadworker.py -> build\lib.win32-3.5\twisted\_threads\test
    copying src\twisted\_threads\test\__init__.py -> build\lib.win32-3.5\twisted\_threads\test
    running egg_info
    writing src\Twisted.egg-info\PKG-INFO
    writing dependency_links to src\Twisted.egg-info\dependency_links.txt
    writing requirements to src\Twisted.egg-info\requires.txt
    writing top-level names to src\Twisted.egg-info\top_level.txt
    writing entry points to src\Twisted.egg-info\entry_points.txt
    warning: manifest_maker: standard file '-c' not found

    reading manifest file 'src\Twisted.egg-info\SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    warning: no previously-included files matching '*.misc' found under directory 'src\twisted'
    warning: no previously-included files matching '*.bugfix' found under directory 'src\twisted'
    warning: no previously-included files matching '*.doc' found under directory 'src\twisted'
    warning: no previously-included files matching '*.feature' found under directory 'src\twisted'
    warning: no previously-included files matching '*.removal' found under directory 'src\twisted'
    warning: no previously-included files matching 'NEWS' found under directory 'src\twisted'
    warning: no previously-included files matching 'README' found under directory 'src\twisted'
    warning: no previously-included files matching 'newsfragments' found under directory 'src\twisted'
    warning: no previously-included files found matching 'src\twisted\topfiles\CREDITS'
    warning: no previously-included files found matching 'src\twisted\topfiles\ChangeLog.Old'
    warning: no previously-included files found matching 'pyproject.toml'
    warning: no previously-included files found matching 'codecov.yml'
    warning: no previously-included files found matching 'appveyor.yml'
    no previously-included directories found matching 'bin'
    no previously-included directories found matching 'admin'
    no previously-included directories found matching '.travis'
    warning: no files found matching '*.Quotes' under directory 'docs'
    warning: no previously-included files found matching 'docs\historic\2003'
    warning: no previously-included files matching '*' found under directory 'docs\historic\2003'
    writing manifest file 'src\Twisted.egg-info\SOURCES.txt'
    copying src\twisted\python\_sendmsg.c -> build\lib.win32-3.5\twisted\python
    copying src\twisted\python\twisted-completion.zsh -> build\lib.win32-3.5\twisted\python
    creating build\lib.win32-3.5\twisted\python\_pydoctortemplates
    copying src\twisted\python\_pydoctortemplates\common.html -> build\lib.win32-3.5\twisted\python\_pydoctortemplates
    copying src\twisted\python\_pydoctortemplates\index.html -> build\lib.win32-3.5\twisted\python\_pydoctortemplates
    copying src\twisted\python\_pydoctortemplates\summary.html -> build\lib.win32-3.5\twisted\python\_pydoctortemplates
    copying src\twisted\test\raiser.c -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\raiser.pyx -> build\lib.win32-3.5\twisted\test
    copying src\twisted\test\server.pem -> build\lib.win32-3.5\twisted\test
    copying src\twisted\internet\iocpreactor\build.bat -> build\lib.win32-3.5\twisted\internet\iocpreactor
    copying src\twisted\internet\iocpreactor\notes.txt -> build\lib.win32-3.5\twisted\internet\iocpreactor
    creating build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
    copying src\twisted\internet\iocpreactor\iocpsupport\acceptex.pxi -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
    copying src\twisted\internet\iocpreactor\iocpsupport\connectex.pxi -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
    copying src\twisted\internet\iocpreactor\iocpsupport\iocpsupport.c -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
    copying src\twisted\internet\iocpreactor\iocpsupport\iocpsupport.pyx -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
    copying src\twisted\internet\iocpreactor\iocpsupport\winsock_pointers.c -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
    copying src\twisted\internet\iocpreactor\iocpsupport\winsock_pointers.h -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
    copying src\twisted\internet\iocpreactor\iocpsupport\wsarecv.pxi -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
    copying src\twisted\internet\iocpreactor\iocpsupport\wsasend.pxi -> build\lib.win32-3.5\twisted\internet\iocpreactor\iocpsupport
    copying src\twisted\internet\test\_awaittests.py.3only -> build\lib.win32-3.5\twisted\internet\test
    copying src\twisted\internet\test\_yieldfromtests.py.3only -> build\lib.win32-3.5\twisted\internet\test
    creating build\lib.win32-3.5\twisted\internet\test\fake_CAs
    copying src\twisted\internet\test\fake_CAs\chain.pem -> build\lib.win32-3.5\twisted\internet\test\fake_CAs
    copying src\twisted\internet\test\fake_CAs\not-a-certificate -> build\lib.win32-3.5\twisted\internet\test\fake_CAs
    copying src\twisted\internet\test\fake_CAs\thing1.pem -> build\lib.win32-3.5\twisted\internet\test\fake_CAs
    copying src\twisted\internet\test\fake_CAs\thing2-duplicate.pem -> build\lib.win32-3.5\twisted\internet\test\fake_CAs
    copying src\twisted\internet\test\fake_CAs\thing2.pem -> build\lib.win32-3.5\twisted\internet\test\fake_CAs
    copying src\twisted\mail\test\rfc822.message -> build\lib.win32-3.5\twisted\mail\test
    copying src\twisted\python\test\_deprecatetests.py.3only -> build\lib.win32-3.5\twisted\python\test
    copying src\twisted\words\im\instancemessenger.glade -> build\lib.win32-3.5\twisted\words\im
    copying src\twisted\words\xish\xpathparser.g -> build\lib.win32-3.5\twisted\words\xish
    running build_ext
    building 'twisted.test.raiser' extension
    error: Unable to find vcvarsall.bat

    ----------------------------------------
Command "c:\users\florian\appdata\local\programs\python\python35-32\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\Florian\\AppData\\Local\\Temp\\pip-build-aggcy2ps\\Twisted\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\Florian\AppData\Local\Temp\pip-ojk2ilw4-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\Florian\AppData\Local\Temp\pip-build-aggcy2ps\Twisted\

C:\Users\Florian>

Je vais essayer de comprendre il semblerait qu’en fin il y a eu erreur… donc je ne sais pas si scrapy est utilisable.

Merci encore.

Florian

Bonjour,

Je m’étonne que personne ne parle du launcher py.exe ici. :(
C’est pourtant la meilleure façon d’utiliser Python en ligne de commande sans aller pourrir la variable d’environnement Path.

Après une installation standard de Python, la première chose que je fais c’est de mettre à jour pip et setuptools dans l’ordre et séparément (pas en une seule commande, mais en deux) :

1
2
C:\>py -3 -m pip install -U pip
C:\>py -3 -m pip install -U setuptools

Et pour les bibliothèques tierces à compiler soit-même, j’installe Visual C++ 2015 ou 2017 Build Tools.

Normalement avec ça je n’ai pas de problème sous Windows, mais il faut régulièrement faire les mises à jour de pip et setuptools.

+0 -0
Connectez-vous pour pouvoir poster un message.
Connexion

Pas encore membre ?

Créez un compte en une minute pour profiter pleinement de toutes les fonctionnalités de Zeste de Savoir. Ici, tout est gratuit et sans publicité.
Créer un compte