summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorembray <embray@stsci.edu>2011-06-27 12:45:58 -0400
committerembray <embray@stsci.edu>2011-06-27 12:45:58 -0400
commit5f9bb96ae4e17eb1324353b348c9fc42829b3b0b (patch)
tree8f569e27dafa5fc467e79bf1178aa002626ae845 /setup.py
parentd2ac8baec552c21fec315db7e85d7b2c5c554d96 (diff)
downloadstwcs_hcf-5f9bb96ae4e17eb1324353b348c9fc42829b3b0b.tar.gz
Futher modified the main './setup.py install' command to use easy_install to install each sub-distribution. This allows us to use the --no-deps option to skip dependency checking by each package, which eliminates a lot of installation noise. Instead, dependency checking is done just once at the very end of the process. Also explicitly added zip_safe=False to each distribution. This was already the case for most of them anyways, but making it explicit eliminates still more noise, and ensures that all our distributions are installed in a consistent manner.
git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/stsci_python/trunk/stwcs@13261 fe389314-cf27-0410-b35b-8c050e845b92
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 8daab33..f47f563 100755
--- a/setup.py
+++ b/setup.py
@@ -30,5 +30,6 @@ setuptools.command.easy_install.easy_install = easier_install
setup(
setup_requires=['d2to1>=0.2.3', 'stsci.distutils>=0.2dev'],
d2to1=True,
- use_2to3=True
+ use_2to3=True,
+ zip_safe=False
)