diff options
author | embray <embray@stsci.edu> | 2011-06-27 12:45:58 -0400 |
---|---|---|
committer | embray <embray@stsci.edu> | 2011-06-27 12:45:58 -0400 |
commit | 5f9bb96ae4e17eb1324353b348c9fc42829b3b0b (patch) | |
tree | 8f569e27dafa5fc467e79bf1178aa002626ae845 /setup.py | |
parent | d2ac8baec552c21fec315db7e85d7b2c5c554d96 (diff) | |
download | stwcs_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-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 ) |