Kaydet (Commit) a7f225d8 authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

Call the write_pkg_info method

üst a7210ed2
...@@ -31,7 +31,6 @@ def show_formats (): ...@@ -31,7 +31,6 @@ def show_formats ():
pretty_printer.print_help( pretty_printer.print_help(
"List of available source distribution formats:") "List of available source distribution formats:")
class sdist (Command): class sdist (Command):
description = "create a source distribution (tarball, zip file, etc.)" description = "create a source distribution (tarball, zip file, etc.)"
...@@ -439,8 +438,9 @@ class sdist (Command): ...@@ -439,8 +438,9 @@ class sdist (Command):
dest = os.path.join(base_dir, file) dest = os.path.join(base_dir, file)
self.copy_file(file, dest, link=link) self.copy_file(file, dest, link=link)
# make_release_tree () self.distribution.metadata.write_pkg_info(base_dir)
# make_release_tree ()
def make_distribution (self): def make_distribution (self):
"""Create the source distribution(s). First, we create the release """Create the source distribution(s). First, we create the release
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment