5 lines
77 B
Python
5 lines
77 B
Python
|
from distutils.core import setup
|
||
|
import py2exe
|
||
|
|
||
|
setup(console=['parser.py'])
|