From 0e7084b80d6f1c6ceaf6ebe59b0a20d3f8a54643 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 29 Mar 2016 13:13:31 -0400 Subject: Implement RECON --- setup.cfg | 47 +++++------------------------------------------ 1 file changed, 5 insertions(+), 42 deletions(-) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index ebbace0..79bc678 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,42 +1,5 @@ -[metadata] -name = stwcs -version = 1.2.3.dev -author = Nadia Dencheva, Warren Hack -author-email = help@stsci.edu -summary = Recomputes the WCS of an HST observation and puts all distortion - corrections in the headers -home-page = http://www.stsci.edu/resources/software_hardware/stsci_python -classifier = - Intended Audience :: Science/Research - License :: OSI Approved :: BSD License - Operating System :: OS Independent - Programming Language :: Python - Topic :: Scientific/Engineering :: Astronomy - Topic :: Software Development :: Libraries :: Python Modules -requires-python = >=2.6 -requires-dist = - stsci.tools - astropy(>=0.3.1) - -[files] -packages_root = lib -packages = - stwcs - stwcs.distortion - stwcs.updatewcs - stwcs.wcsutil - stwcs.gui -data_files = - stwcs/gui = lib/stwcs/gui/*.help - stwcs/gui/pars = lib/stwcs/gui/pars/* - stwcs/gui/htmlhelp = lib/stwcs/gui/htmlhelp/* - -[install_data] -pre-hook.glob-data-files = stsci.distutils.hooks.glob_data_files - -[global] -setup_hooks = - stsci.distutils.hooks.tag_svn_revision - stsci.distutils.hooks.version_setup_hook - stsci.distutils.hooks.use_packages_root - +[bdist_wheel] +# This flag says that the code is written to work on both Python 2 and Python +# 3. If at all possible, it is good practice to do this. If you cannot, you +# will need to generate wheels for each Python version that you support. +universal=1 -- cgit