From e6792c1e771fab4ed025beeb8f71fb2d5c7d53e8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=89ric=20Araujo?= Date: Thu, 9 Jun 2011 14:07:02 +0200 Subject: [PATCH] Stop creating a Python-X.Y.Z-pyX.Y.egg-info file on install (#10645) --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.py b/setup.py index 39751c3b0a..2426aad100 100644 --- a/setup.py +++ b/setup.py @@ -1780,6 +1780,13 @@ class PyBuildInstall(install): install.initialize_options(self) self.warn_dir=0 + # Customize subcommands to not install an egg-info file for Python + sub_commands = [('install_lib', install.has_lib), + ('install_headers', install.has_headers), + ('install_scripts', install.has_scripts), + ('install_data', install.has_data)] + + class PyBuildInstallLib(install_lib): # Do exactly what install_lib does but make sure correct access modes get # set on installed directories and files. All installed files with get -- 2.50.0