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

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

improving readablility of the setup file

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                  (install_location+'xml/rc2007_gui',
20                       ['rc2007_gui.prf.xml',
21                        'rc2007_gui.scd.xml',
22                        'rc2007_gui.spd.xml'])
23                 ]
24     )
Note: See TracBrowser for help on using the browser.