import py2exe, glob, os from distutils.core import setup setup(windows=[{'script':'flauxtext.pyw', 'icon_resources':[(1, 'icon.ico')]}], url='http://fauxlkner.sf.net', version='r2', maintainer='faulkner', maintainer_email='faulkner612@comcast.net', author='faulkner', data_files=[('', filter(os.path.isfile,glob.glob('*')))], author_email='faulkner612@comcast.net', description='extremely customizeable pyGTK text editor', long_description='flauxtext is a relatively small [byte-wise; its feature list is not small] text editor written in python using GTK bindings.\nthis script uses py2exe to generate a standalone windows binary.\nyou could just download the precompiled windows binary here:\nhttp://sf.net/projects/fauxlkner', name='flauxtext', license='flauxtext is released under the GNU general public license version 2.0\nhttp://www.opensource.org/licenses/gpl-license.php', )