diff options
Diffstat (limited to 'defsetup.py')
-rw-r--r-- | defsetup.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/defsetup.py b/defsetup.py new file mode 100644 index 0000000..0c4de95 --- /dev/null +++ b/defsetup.py @@ -0,0 +1,16 @@ +import sys + +pkg = ["hstwcs", 'hstwcs.updatewcs', 'hstwcs.wcsutil', 'hstwcs.distortion'] + +setupargs = { + 'version' : "0.1", + 'description' : "Recomputes the WCS of an HST observation and puts all istortion corrections in the headers.", + 'package_dir': {'hstwcs':'lib', 'hstwcs.updatewcs': 'updatewcs', + 'hstwcs.wcsutil': 'wcsutil', 'hstwcs.distortion': 'distortion'}, + + 'author' : "Nadia Dencheva, Warren Hack", + 'author_email' : "help@stsci.edu", + 'license' : "http://www.stsci.edu/resources/software_hardware/pyraf/LICENSE", + 'platforms' : ["Linux","Solaris","Mac OS X", "Windows"], +} + |