root/experimental/components/GraphPy/branches/0.6.1/GraphPy/setup.py @ 4304

Revision 4304, 417 bytes (checked in by DrewCormier, 6 years ago)

initial import

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='GraphPy', description='GraphPy',data_files=[(install_location+'bin/GraphPy',['GraphPy.py', 'WorkModule.py']),
14        (install_location+'xml/GraphPy',['GraphPy.prf.xml',
15        'GraphPy.scd.xml', 'GraphPy.spd.xml'])])
Note: See TracBrowser for help on using the browser.