Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7f9f2b commit e6792c1Copy full SHA for e6792c1
1 file changed
setup.py
@@ -1780,6 +1780,13 @@ def initialize_options (self):
1780
install.initialize_options(self)
1781
self.warn_dir=0
1782
1783
+ # Customize subcommands to not install an egg-info file for Python
1784
+ sub_commands = [('install_lib', install.has_lib),
1785
+ ('install_headers', install.has_headers),
1786
+ ('install_scripts', install.has_scripts),
1787
+ ('install_data', install.has_data)]
1788
+
1789
1790
class PyBuildInstallLib(install_lib):
1791
# Do exactly what install_lib does but make sure correct access modes get
1792
# set on installed directories and files. All installed files with get
0 commit comments