diff options
Diffstat (limited to 'command/egg_info.py')
-rw-r--r-- | command/egg_info.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/command/egg_info.py b/command/egg_info.py new file mode 100644 index 000000000..d2f07e28f --- /dev/null +++ b/command/egg_info.py @@ -0,0 +1,6 @@ +from setuptools.command.egg_info import egg_info as _egg_info + +class egg_info(_egg_info): + def run(self): + self.run_command("build_src") + _egg_info.run(self) |