root/experimental/components/rc2007_gui/setup.py @ 4804

Revision 4804, 0.6 KB (checked in by DrewCormier, 6 years ago)

added basic frame for starting wx stuff, orb. also added wx_inits to my install script

Line 
1#! /usr/bin/env python
2
3from distutils.core import setup
4import sys
5
6install_location = '/sdr/'
7
8if len(sys.argv) != 2:
9        sys.exit(1)
10
11sys.argv.append('--install-lib='+install_location)
12
13setup(name='rc2007_gui',
14      description='rc2007_gui',
15      data_files=[
16                  (install_location+'bin/rc2007_gui',
17                       ['rc2007_gui.py',
18                        'WorkModule.py',
19                        'wx_inits.py'   ]),
20                  (install_location+'xml/rc2007_gui',
21                       ['rc2007_gui.prf.xml',
22                        'rc2007_gui.scd.xml',
23                        'rc2007_gui.spd.xml'])
24                 ]
25     )
Note: See TracBrowser for help on using the browser.