How to use the wheel.bdist_wheel.bdist_wheel.initialize_options function in wheel

To help you get started, we’ve selected a few wheel examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-sdk-for-python / azure-common / azure_wheel.py View on Github external
def initialize_options(self):
            original_bdist_wheel.initialize_options(self)
            self.azure_namespace_package = None
github Nuitka / Nuitka / nuitka / distutils / bdist_nuitka.py View on Github external
def initialize_options(self):
        # Register the command class overrides above
        dist = self.distribution
        dist.cmdclass = dist.cmdclass or {}  # Ensure is a dict
        dist.cmdclass["build"] = build
        dist.cmdclass["install"] = install

        wheel.bdist_wheel.bdist_wheel.initialize_options(self)
github catboost / catboost / catboost / python-package / setup.py View on Github external
def initialize_options(self):
        _bdist_wheel.initialize_options(self)
        Helper.initialize_options(self)
github Azure / azure-kusto-python / azure-kusto-ingest / azure_bdist_wheel.py View on Github external
def initialize_options(self):
        bdist_wheel.initialize_options(self)
        self.azure_namespace_package = None
github Azure / azure-cli / src / command_modules / azure-cli-cosmosdb / azure_bdist_wheel.py View on Github external
def initialize_options(self):
        bdist_wheel.initialize_options(self)
        self.azure_namespace_package = None
github Khan / frankenserver / python / google / appengine / _internal / ruamel / yaml / setup.py View on Github external
def initialize_options(self):
            _bdist_wheel.initialize_options(self)
            dist_base = os.environ.get('PYDISTBASE')
            fpn = getattr(getattr(self, 'nsp', self), 'full_package_name', None)
            if fpn and dist_base:
                print('setting  distdir {}/{}'.format(dist_base, fpn))
                self.dist_dir = os.path.join(dist_base, fpn)