diff options
author | hack <hack@stsci.edu> | 2011-10-28 11:37:10 -0400 |
---|---|---|
committer | hack <hack@stsci.edu> | 2011-10-28 11:37:10 -0400 |
commit | daceee76df36789b8ff239a3633ecb21812e8895 (patch) | |
tree | a009d7f7ae33ed9efc29b0bb5d4b9847b59e895c | |
parent | eb7ec1682d4b311e68cbd9d66914eeeff1ee3605 (diff) | |
download | stwcs_hcf-daceee76df36789b8ff239a3633ecb21812e8895.tar.gz |
Update the STWCS installation scripts to install the new 'gui' package.
git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/stsci_python/trunk/stwcs@13920 fe389314-cf27-0410-b35b-8c050e845b92
-rw-r--r-- | defsetup.py | 4 | ||||
-rw-r--r-- | new_setup.cfg | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/defsetup.py b/defsetup.py index 9ea8cea..eb681e8 100644 --- a/defsetup.py +++ b/defsetup.py @@ -2,12 +2,12 @@ from __future__ import division # confidence high import sys -pkg = ["stwcs", 'stwcs.updatewcs', 'stwcs.wcsutil', 'stwcs.distortion'] +pkg = ["stwcs", 'stwcs.updatewcs', 'stwcs.wcsutil', 'stwcs.distortion', 'stwcs.gui'] setupargs = { 'version' : "0.8", 'description' : "Recomputes the WCS of an HST observation and puts all istortion corrections in the headers.", - 'package_dir': {'stwcs':'lib/stwcs', 'stwcs.updatewcs': 'lib/stwcs/updatewcs', + 'package_dir': {'stwcs':'lib/stwcs', 'stwcs.updatewcs': 'lib/stwcs/updatewcs', 'lib/stwcs/gui', 'stwcs.wcsutil': 'lib/stwcs/wcsutil', 'stwcs.distortion': 'lib/stwcs/distortion'}, 'author' : "Nadia Dencheva, Warren Hack", diff --git a/new_setup.cfg b/new_setup.cfg index 9e70d66..12f70f8 100644 --- a/new_setup.cfg +++ b/new_setup.cfg @@ -25,6 +25,7 @@ packages = stwcs.distortion stwcs.updatewcs stwcs.wcsutil + stwcs.gui [global] commands = stsci.distutils.command.easier_install.easier_install |