diff options
Diffstat (limited to 'winsetup.py')
-rw-r--r-- | winsetup.py | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/winsetup.py b/winsetup.py new file mode 100644 index 0000000..f2fa0cb --- /dev/null +++ b/winsetup.py @@ -0,0 +1,50 @@ +#!/usr/bin/python +# +# Copyright (C) 2011 Andreas Auras +# +# This file is part of the DF10CH Atmolight controller project. +# +# DF10CH Atmolight controller is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# DF10CH Atmolight controller is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA +# +# Df10CH setup program installation script +# + +from distutils.core import setup +import py2exe + +setup(name='df10ch_setup', + version='4', + description='DF10CH Setup program', + author='Andreas Auras', + author_email='yak54@inkennet.de', + url='http://www.vdr-wiki.de/wiki/index.php/VDR_Wiki:DF10CH_Atmolight_Kontroller', + requires=[ 'TKinter', 'Image', 'ImageTk', 'ImageDraw' ], + console=[ 'df10ch_setup.py' ], + packages = [ 'df10ch_setup_pkg' ], + data_files = [ ( '', [ 'project/df10ch_test/Release/df10ch_test.exe', + '../libusb/Win32/Release/dll/libusb-1.0.dll', + '../zadig.exe', + 'windows/df10ch_setup.bat', + 'HISTORY', + 'COPYING', + 'README' ] ), + ( 'firmware', [ 'usb_appl/df10ch_usb_appl.dff', + 'usb_appl/df10ch_usb_appl.hex', + 'usb_boot/df10ch_usb_boot.hex', + 'pwm_appl/df10ch_pwm_appl.dff', + 'pwm_appl/df10ch_pwm_appl.hex', + 'pwm_boot/df10ch_pwm_boot.hex' ] ) ], + ) + |