12 lines
256 B
Python
12 lines
256 B
Python
from distutils.core import setup
|
|
import py2exe
|
|
|
|
setup(
|
|
windows = ['pygtk-imap-chk.py'],
|
|
options = {
|
|
'py2exe': {
|
|
'includes': 'cairo, pango, pangocairo, atk, gobject, gio'
|
|
}
|
|
}
|
|
)
|