Python distutils.command.build_py.build_py.finalize_options() Examples

The following are 29 code examples of distutils.command.build_py.build_py.finalize_options(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module distutils.command.build_py.build_py , or try the search function .
Example #1
Source File: setupbase.py    From jupyterlab-sidecar with BSD 3-Clause "New" or "Revised" License 6 votes vote down vote up
def combine_commands(*commands):
    """Return a Command that combines several commands."""

    class CombinedCommand(Command):
        user_options = []

        def initialize_options(self):
            self.commands = []
            for C in commands:
                self.commands.append(C(self.distribution))
            for c in self.commands:
                c.initialize_options()

        def finalize_options(self):
            for c in self.commands:
                c.finalize_options()

        def run(self):
            for c in self.commands:
                c.run()
    return CombinedCommand 
Example #2
Source File: setupbase.py    From dask-labextension with BSD 3-Clause "New" or "Revised" License 6 votes vote down vote up
def combine_commands(*commands):
    """Return a Command that combines several commands."""

    class CombinedCommand(Command):
        user_options = []

        def initialize_options(self):
            self.commands = []
            for C in commands:
                self.commands.append(C(self.distribution))
            for c in self.commands:
                c.initialize_options()

        def finalize_options(self):
            for c in self.commands:
                c.finalize_options()

        def run(self):
            for c in self.commands:
                c.run()
    return CombinedCommand 
Example #3
Source File: setupbase.py    From ipyevents with BSD 3-Clause "New" or "Revised" License 6 votes vote down vote up
def combine_commands(*commands):
    """Return a Command that combines several commands."""

    class CombinedCommand(Command):
        user_options = []

        def initialize_options(self):
            self.commands = []
            for C in commands:
                self.commands.append(C(self.distribution))
            for c in self.commands:
                c.initialize_options()

        def finalize_options(self):
            for c in self.commands:
                c.finalize_options()

        def run(self):
            for c in self.commands:
                c.run()
    return CombinedCommand 
Example #4
Source File: setupbase.py    From jupyterlab-latex with BSD 3-Clause "New" or "Revised" License 6 votes vote down vote up
def combine_commands(*commands):
    """Return a Command that combines several commands."""

    class CombinedCommand(Command):
        user_options = []

        def initialize_options(self):
            self.commands = []
            for C in commands:
                self.commands.append(C(self.distribution))
            for c in self.commands:
                c.initialize_options()

        def finalize_options(self):
            for c in self.commands:
                c.finalize_options()

        def run(self):
            for c in self.commands:
                c.run()
    return CombinedCommand 
Example #5
Source File: setupbase.py    From ipycanvas with BSD 3-Clause "New" or "Revised" License 6 votes vote down vote up
def combine_commands(*commands):
    """Return a Command that combines several commands."""

    class CombinedCommand(Command):
        user_options = []

        def initialize_options(self):
            self.commands = []
            for C in commands:
                self.commands.append(C(self.distribution))
            for c in self.commands:
                c.initialize_options()

        def finalize_options(self):
            for c in self.commands:
                c.finalize_options()

        def run(self):
            for c in self.commands:
                c.run()
    return CombinedCommand 
Example #6
Source File: setupbase.py    From widget-ts-cookiecutter with BSD 3-Clause "New" or "Revised" License 6 votes vote down vote up
def combine_commands(*commands):
    """Return a Command that combines several commands."""

    class CombinedCommand(Command):
        user_options = []

        def initialize_options(self):
            self.commands = []
            for C in commands:
                self.commands.append(C(self.distribution))
            for c in self.commands:
                c.initialize_options()

        def finalize_options(self):
            for c in self.commands:
                c.finalize_options()

        def run(self):
            for c in self.commands:
                c.run()
    return CombinedCommand 
Example #7
Source File: setupbase.py    From jupyterlab-s3-browser with Apache License 2.0 6 votes vote down vote up
def combine_commands(*commands):
    """Return a Command that combines several commands."""

    class CombinedCommand(Command):
        user_options = []

        def initialize_options(self):
            self.commands = []
            for C in commands:
                self.commands.append(C(self.distribution))
            for c in self.commands:
                c.initialize_options()

        def finalize_options(self):
            for c in self.commands:
                c.finalize_options()

        def run(self):
            for c in self.commands:
                c.run()

    return CombinedCommand 
Example #8
Source File: setup.py    From virt-who with GNU General Public License v2.0 5 votes vote down vote up
def finalize_options(self):
        _build.finalize_options(self)
        if not self.rpm_version:
            self.rpm_version = self.get_git_describe() 
Example #9
Source File: build_py.py    From Flask with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        _build_py.finalize_options(self)
        self.package_data = self.distribution.package_data
        self.exclude_package_data = self.distribution.exclude_package_data or {}
        if 'data_files' in self.__dict__: del self.__dict__['data_files']
        self.__updated_files = []
        self.__doctests_2to3 = [] 
Example #10
Source File: build_py.py    From Flask with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        _build_py.finalize_options(self)
        self.package_data = self.distribution.package_data
        self.exclude_package_data = self.distribution.exclude_package_data or {}
        if 'data_files' in self.__dict__: del self.__dict__['data_files']
        self.__updated_files = []
        self.__doctests_2to3 = [] 
Example #11
Source File: setupbase.py    From dask-labextension with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def finalize_options(self):
        pass 
Example #12
Source File: setupbase.py    From dask-labextension with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def update_package_data(distribution):
    """update build_py options to get package_data changes"""
    build_py = distribution.get_command_obj('build_py')
    build_py.finalize_options() 
Example #13
Source File: setupbase.py    From ipycanvas with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def finalize_options(self):
        pass 
Example #14
Source File: setupbase.py    From ipycanvas with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def update_package_data(distribution):
    """update build_py options to get package_data changes"""
    build_py = distribution.get_command_obj('build_py')
    build_py.finalize_options() 
Example #15
Source File: setupbase.py    From widget-ts-cookiecutter with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def finalize_options(self):
        pass 
Example #16
Source File: setupbase.py    From widget-ts-cookiecutter with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def update_package_data(distribution):
    """update build_py options to get package_data changes"""
    build_py = distribution.get_command_obj('build_py')
    build_py.finalize_options() 
Example #17
Source File: setupbase.py    From jupyterlab-s3-browser with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        pass 
Example #18
Source File: setupbase.py    From jupyterlab-s3-browser with Apache License 2.0 5 votes vote down vote up
def update_package_data(distribution):
    """update build_py options to get package_data changes"""
    build_py = distribution.get_command_obj("build_py")
    build_py.finalize_options() 
Example #19
Source File: setupbase.py    From jupyterlab-sidecar with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def update_package_data(distribution):
    """update build_py options to get package_data changes"""
    build_py = distribution.get_command_obj('build_py')
    build_py.finalize_options() 
Example #20
Source File: setup.py    From virt-who with GNU General Public License v2.0 5 votes vote down vote up
def finalize_options(self):
        _build_py.finalize_options(self)
        self.set_undefined_options(
            'build',
            ('rpm_version', 'rpm_version')
        ) 
Example #21
Source File: setup.py    From qpid-python with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
      _build_py.finalize_options(self)
      self.package_data = self.distribution.package_data
      self.data_files = self.get_data_files() 
Example #22
Source File: setup.py    From qpid-python with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
    _clean.finalize_options(self)
    self.set_undefined_options('build', ('build_doc', 'build_doc')) 
Example #23
Source File: setup.py    From qpid-python with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
    self.set_undefined_options('build', ('build_doc', 'build_doc')) 
Example #24
Source File: setup.py    From qpid-python with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
    _build.finalize_options(self)
    if self.build_doc is None:
      self.build_doc = "%s/doc" % self.build_base 
Example #25
Source File: setupbase.py    From jupyterlab-latex with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def finalize_options(self):
        pass 
Example #26
Source File: setupbase.py    From jupyterlab-latex with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def update_package_data(distribution):
    """update build_py options to get package_data changes"""
    build_py = distribution.get_command_obj('build_py')
    build_py.finalize_options() 
Example #27
Source File: setupbase.py    From ipyevents with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def finalize_options(self):
        pass 
Example #28
Source File: setupbase.py    From ipyevents with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def update_package_data(distribution):
    """update build_py options to get package_data changes"""
    build_py = distribution.get_command_obj('build_py')
    build_py.finalize_options() 
Example #29
Source File: setupbase.py    From jupyterlab-sidecar with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def finalize_options(self):
        pass