|
Revision 4305, 421 bytes
(checked in by DrewCormier, 6 years ago)
|
|
changed install location for 0.6.1
|
| Rev | Line | |
|---|
| [4304] | 1 | #! /usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | from distutils.core import setup |
|---|
| 4 | import sys |
|---|
| 5 | |
|---|
| [4305] | 6 | install_location = '/home/sca' |
|---|
| [4304] | 7 | |
|---|
| 8 | if len(sys.argv) != 2: |
|---|
| 9 | sys.exit(1) |
|---|
| 10 | |
|---|
| 11 | sys.argv.append('--install-lib='+install_location) |
|---|
| 12 | |
|---|
| 13 | setup(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'])]) |
|---|