import sys
import os
NAME="G6 Downloader"
VERSION = "0.1"
DESCRIPTION = ""
AUTHOR = "Jair Gaxiola"
AUTHOR_EMAIL = "jyr.gaxiola@gmail.com"
URL = ""
LICENSE = ""
packages_path = os.path.abspath(os.path.dirname(__file__))
module_path = packages_path + '\\system\\'
image_files = []
"""
Usage:
python setup.py py2exe
"""
from distutils.core import setup
import py2exe
system_tray = module_path + '\\g6downloader.py'
path_images = packages_path + '\\img\\'
images = ['connect.png','offline.png','download.png']
for img in images:
image_files.append(path_images + img)
setup(
windows=[system_tray],
data_files=[('img',image_files)],
options={'py2exe':{'skip_archive':1,'packages':'system'}}
)