diff options
author | dencheva <dencheva@stsci.edu> | 2008-12-22 08:57:38 -0500 |
---|---|---|
committer | dencheva <dencheva@stsci.edu> | 2008-12-22 08:57:38 -0500 |
commit | 8f0310bfa7d2fd14322d2fd11aebe2e317f196c5 (patch) | |
tree | e52d1649e83e9c7e0f616e307fa2b015ca159485 /defsetup.py | |
parent | 23da6a7f1385b6361043b4c9512316314c3c5fe2 (diff) | |
download | stwcs_hcf-8f0310bfa7d2fd14322d2fd11aebe2e317f196c5.tar.gz |
Changed setup to be consistent with current pytools
git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/development/trunk/hstwcs@7405 fe389314-cf27-0410-b35b-8c050e845b92
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"], +} + |