|
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 | |
|---|
| 3 | from distutils.core import setup |
|---|
| 4 | import sys |
|---|
| 5 | |
|---|
| 6 | install_location = '/sdr/' |
|---|
| 7 | |
|---|
| 8 | if len(sys.argv) != 2: |
|---|
| 9 | sys.exit(1) |
|---|
| 10 | |
|---|
| 11 | sys.argv.append('--install-lib='+install_location) |
|---|
| 12 | |
|---|
| 13 | setup(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 | ) |
|---|