Example #1
0
 def finalize_options(self):
  # this is a universal, but platform-specific package; a combination
  # that wheel does not recognize, thus simply fool it
     from distutils.util import get_platform
     self.plat_name = get_platform()
     _bdist_wheel.finalize_options(self)
     self.root_is_pure = True
Example #2
0
 def finalize_options(self):
     #
     # This is a universal (Python2/Python3), but platform-specific (has
     # compiled parts) package; a combination that wheel does not recognize,
     # thus simply fool it.
     #
     self.plat_name = get_platform()
     bdist_wheel.finalize_options(self)
     self.root_is_pure = True
Example #3
0
 def finalize_options(self):
     # Do a bit of monkey-patching to let bdist_wheel know that there
     # really are extension modules in this build, eventhough they are
     # not built here.
     def _has_ext_modules(self):
         return True
     from setuptools.dist import Distribution
     #Distribution.is_pure = _is_pure
     Distribution.has_ext_modules = _has_ext_modules
     
     orig_bdist_wheel.finalize_options(self)
Example #4
0
 def finalize_options(self):
     global cpp_extension, cxx_compiler, cmake_options
     bdist_wheel.finalize_options(self)
     cpp_extension = cpp_extension or self.cpp_extension
     cxx_compiler = self.cxx_compiler if self.cxx_compiler is not None else cxx_compiler
     cmake_options = self.cmake_options if self.cmake_options is not None else cmake_options
 def finalize_options(self):
     adjust_plat_name(self)
     bdist_wheel.finalize_options(self)
Example #6
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     self.root_is_pure = False  # We have platform specific binaries
Example #7
0
 def finalize_options(self):
     # noinspection PyArgumentList
     bdist_wheel.finalize_options(self)
     self.root_is_pure = False
Example #8
0
 def finalize_options(self):
     _bdist_wheel.finalize_options(self)
     if platform.system() == "Darwin":
         self.root_is_pure = False
Example #9
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     self.root_is_pure = False
Example #10
0
 def finalize_options(self):
     _bdist_wheel.finalize_options(self)
     if sys.platform == 'win32':
         self.root_is_pure = False
Example #11
0
 def finalize_options(self):
     """Finalize the options."""
     bdist_wheel.finalize_options(self)
     BaseCommand.finalize_options(self)
Example #12
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     # Force the wheel to be marked as platform-specific
     self.root_is_pure = False
Example #13
0
 def finalize_options(self):
     _bdist_wheel.finalize_options(self)
     # wheels with DSO are not "pure" python
     self.root_is_pure &= not has_dsos(self)
Example #14
0
 def finalize_options(self):
     self.plat_name = get_platform(None)  # force a platform tag
     _bdist_wheel.finalize_options(self)
Example #15
0
 def finalize_options(self) -> None:
     bdist_wheel.finalize_options(self)
Example #16
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     if self.pip_args is None:
         print('pip_args not set, using default https://pypi.org/simple/')
Example #17
0
 def finalize_options(self):
     _bdist_wheel.finalize_options(self)
     # Mark us as not a pure python package (we have platform specific rust code)
     self.root_is_pure = False
Example #18
0
 def finalize_options(self):
     _bdist_wheel.finalize_options(self)
     self.root_is_pure = True
Example #19
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     assert "any" not in self.get_archive_basename(), "bdist_wheel will not generate platform specific names, aborting!"
Example #20
0
 def finalize_options(self):
     """Subclass finalize_options() to fix the value of root_is_pure"""
     bdist_wheel.finalize_options(self)
     # This *is not* a pure Python package
     self.root_is_pure = False
Example #21
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     # The build isn't platform-independent
     self.root_is_pure = False
Example #22
0
 def finalize_options(self):
     _bdist_wheel.finalize_options(self)
     # Mark us as not a pure python package
     self.root_is_pure = False
Example #23
0
 def finalize_options(self):
     print(self.plat_name)
     self.distribution.package_data["nlpir"] += multi_arch_lib.get(self.plat_name, multi_arch_lib['any'])
     print(self.distribution.package_data)
     bdist_wheel.finalize_options(self)
Example #24
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     if self.distribution.has_executables():
         self.root_is_pure = False
Example #25
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     if self.azure_namespace_package and not self.azure_namespace_package.endswith("-nspkg"):
         raise ValueError("azure_namespace_package must finish by -nspkg")
Example #26
0
 def finalize_options(self):
     bdist_wheel_.finalize_options(self)
     self.universal = True
     self.plat_name_supplied = True
     self.plat_name = get_platform()
Example #27
0
 def finalize_options(self):
     orig_bdist_wheel.finalize_options(self)
     # Mark us as not a pure python package
     self.root_is_pure = False
Example #28
0
 def finalize_options(self):
     _bdist_wheel.finalize_options(self)
     Helper.finalize_options(self)
Example #29
0
 def finalize_options(self):
     # bdist_wheel is old-style class in python 2, so can't `super`
     bdist_wheel.finalize_options(self)
     self.root_is_pure = False
Example #30
0
 def finalize_options(self):
     _bdist_wheel.finalize_options(self)
     # noinspection PyAttributeOutsideInit
     self.root_is_pure = False
Example #31
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
Example #32
0
 def finalize_options(self):
     global enable_pcre
     enable_pcre = self.enable_pcre
     bdist_wheel.finalize_options(self)
Example #33
0
 def finalize_options(self):
     _bdist_wheel.finalize_options(self)
     if not is_manylinux:
         self.root_is_pure = False
Example #34
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     self.distribution.build_wheel = True
Example #35
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     # The build isn't platform-independent
     self.root_is_pure = False
Example #36
0
    def finalize_options(self):
        bdist_wheel.finalize_options(self)

        # Ensure that platform tag is included because binaries are platform-specific
        self.root_is_pure = False
Example #37
0
 def finalize_options(self):
     global enable_pcre
     enable_pcre = self.enable_pcre
     bdist_wheel.finalize_options(self)
Example #38
0
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     # Force the wheel to be marked as platform-specific
     self.root_is_pure = False
Example #39
0
File: setup.py Project: comel/uwsgi
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     self.root_is_pure = False
Example #40
0
File: setup.py Project: 2ps/djenga
 def finalize_options(self):
     _bdist_wheel.finalize_options(self)
     self.root_is_pure = True
Example #41
0
 def finalize_options(self):
     BDistWheelCommand.finalize_options(self)
     # Unfuck the default detection which we f****d outselves
     # because we needed to override has_ext_modules to get our
     # javascript shittery going.
     self.root_is_pure = True
 def finalize_options(self):
     bdist_wheel.finalize_options(self)
     if self.azure_namespace_package and not self.azure_namespace_package.endswith("-nspkg"):
         raise ValueError("azure_namespace_package must finish by -nspkg")