1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import sys
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': {'stwcs':'lib', 'stwcs.updatewcs': 'updatewcs',
'stwcs.wcsutil': 'wcsutil', 'stwcs.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"],
}
|