From 5f9bb96ae4e17eb1324353b348c9fc42829b3b0b Mon Sep 17 00:00:00 2001 From: embray Date: Mon, 27 Jun 2011 16:45:58 +0000 Subject: 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 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') 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 ) -- cgit