Renamed 'set_default_options()' to 'initialize_options()', and

'set_final_options()' to 'finalize_options()'.
This commit is contained in:
Greg Ward 2000-02-18 00:35:22 +00:00
parent 4c96db1a65
commit e01149cbe8
10 changed files with 28 additions and 28 deletions

View file

@ -18,14 +18,14 @@ class install_py (Command):
]
def set_default_options (self):
def initialize_options (self):
# let the 'install' command dictate our installation directory
self.install_dir = None
self.build_dir = None
self.compile = 1
self.optimize = 1
def set_final_options (self):
def finalize_options (self):
# Find out from the 'build_ext' command if we were asked to build
# any extensions. If so, that means even pure-Python modules in