回答編集履歴
1
手抜きしないでちゃんと書いた。
answer
CHANGED
@@ -17,12 +17,15 @@
|
|
17
17
|
setup.pyに以下のように記述すれば、無視してくれるそうです。
|
18
18
|
|
19
19
|
```python
|
20
|
+
from distutils.core import setup
|
21
|
+
import py2exe
|
22
|
+
|
20
23
|
py2exe_options = {
|
21
24
|
'excludes': ['readline'],
|
22
25
|
}
|
23
26
|
setup(
|
24
27
|
options = {'py2exe': py2exe_options },
|
25
|
-
.
|
28
|
+
console=['window01.py']
|
26
29
|
)
|
27
30
|
```
|
28
31
|
|