|
Revision 1249, 0.6 KB
(checked in by Freddie Akeroyd, 17 months ago)
|
|
Add setup script for python to be used if pythion installed after nexus
Refs #101
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # |
|---|
| 3 | # This file is for a manual install of python on windows |
|---|
| 4 | # If python is already present it should be detected by |
|---|
| 5 | # the windows installer and the nxs directory copied to |
|---|
| 6 | # the python site-packages directory |
|---|
| 7 | # |
|---|
| 8 | # On Linux the Makefile will also install python, but not |
|---|
| 9 | # using this file - instead it uses the automake python install bits |
|---|
| 10 | # |
|---|
| 11 | # To use this file type: |
|---|
| 12 | # |
|---|
| 13 | # python setup.py install |
|---|
| 14 | # |
|---|
| 15 | from distutils.core import setup |
|---|
| 16 | |
|---|
| 17 | setup(name='NeXus', |
|---|
| 18 | version='4.2', |
|---|
| 19 | description='Python Bindings to libNeXus', |
|---|
| 20 | author='Paul Kienzle', |
|---|
| 21 | packages = ['nxs'], |
|---|
| 22 | ) |
|---|