diff options
-rw-r--r-- | defsetup.py | 6 | ||||
-rw-r--r-- | updatewcs/__init__.py | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/defsetup.py b/defsetup.py index 5d04f2a..733f6e5 100644 --- a/defsetup.py +++ b/defsetup.py @@ -1,12 +1,12 @@ import sys -pkg = ["updatewcs", 'updatewcs.hstwcs', 'updatewcs.wcsutil', 'updatewcs.distortion'] +pkg = ["stwcs", 'stwcs.updatewcs', 'stwcs.wcsutil', 'stwcs.distortion'] setupargs = { 'version' : "0.1", 'description' : "Recomputes the WCS of an HST observation and puts all istortion corrections in the headers.", - 'package_dir': {'updatewcs':'lib', 'updatewcs.hstwcs': 'hstwcs', - 'updatewcs.wcsutil': 'wcsutil', 'updatewcs.distortion': 'distortion'}, + 'package_dir': {'stwcs':'lib', 'stwcs.updatewcs': 'updatewcs', + 'stwcs.wcsutil': 'wcsutil', 'stwcs.distortion': 'distortion'}, 'author' : "Nadia Dencheva, Warren Hack", 'author_email' : "help@stsci.edu", diff --git a/updatewcs/__init__.py b/updatewcs/__init__.py index bf47cdc..55767f6 100644 --- a/updatewcs/__init__.py +++ b/updatewcs/__init__.py @@ -24,7 +24,7 @@ def updatewcs(input, vacorr=True, tddcorr=True, dgeocorr=True, checkfiles=True, Example ======= - >>>from hstwcs import updatewcs + >>>from stwcs import updatewcs >>>updatewcs.updatewcs(filename) Dependencies |