Python setuptools.command.install.install.initialize_options() Examples
The following are 29
code examples of setuptools.command.install.install.initialize_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
setuptools.command.install.install
, or try the search function
.
Example #1
Source File: setup.py From ads2bibdesk with GNU General Public License v3.0 | 5 votes |
def initialize_options(self): install.initialize_options(self) self.service = None
Example #2
Source File: setup.py From fades with GNU General Public License v3.0 | 5 votes |
def initialize_options(self): """Run parent initialization and then fix the scripts var.""" install.initialize_options(self) # leave the proper script according to the platform script = SCRIPT_WIN if sys.platform == "win32" else SCRIPT_REST self.distribution.scripts = [script]
Example #3
Source File: setup.py From h2o4gpu with Apache License 2.0 | 5 votes |
def initialize_options(self): install.initialize_options(self) self.build_scripts = None
Example #4
Source File: setup.py From slamdunk with GNU Affero General Public License v3.0 | 5 votes |
def initialize_options(self): _install.initialize_options(self)
Example #5
Source File: setup.py From reactivepy with BSD 3-Clause "New" or "Revised" License | 5 votes |
def initialize_options(self): pass
Example #6
Source File: setup.py From reactivepy with BSD 3-Clause "New" or "Revised" License | 5 votes |
def initialize_options(self): install.initialize_options(self) self.user = False self.sys_prefix = False self.prefix = None
Example #7
Source File: setup.py From reactivepy with BSD 3-Clause "New" or "Revised" License | 5 votes |
def initialize_options(self): develop.initialize_options(self) self.user = False self.sys_prefix = False self.prefix = None
Example #8
Source File: setup.py From python-zpar with MIT License | 5 votes |
def initialize_options(self): install.initialize_options(self) self.build_scripts = None
Example #9
Source File: setup.py From gemBS with GNU General Public License v3.0 | 5 votes |
def initialize_options(self): self.minimal = False self.no_samtools = False self.no_gem3 = False self.no_bscall = False self.disable_cuda = False self.enable_cuda = False _install.initialize_options(self)
Example #10
Source File: setup.py From ctpbee with MIT License | 5 votes |
def initialize_options(self): install.initialize_options(self) self.fix = "false" self.uri = None
Example #11
Source File: setup.py From IPlantUML with MIT License | 5 votes |
def initialize_options(self): _install.initialize_options(self) self.jarpath = None
Example #12
Source File: setup.py From PyBloqs with GNU Lesser General Public License v2.1 | 5 votes |
def initialize_options(self): TestCommand.initialize_options(self) self.pytest_args = []
Example #13
Source File: setup.py From PyBloqs with GNU Lesser General Public License v2.1 | 5 votes |
def initialize_options(self): install.initialize_options(self) self.highcharts = None self.wkhtmltopdf = None
Example #14
Source File: setup.py From PyBloqs with GNU Lesser General Public License v2.1 | 5 votes |
def initialize_options(self): self.wkhtmltopdf = None
Example #15
Source File: setup.py From PyBloqs with GNU Lesser General Public License v2.1 | 5 votes |
def initialize_options(self): self.highcharts = None
Example #16
Source File: setup.py From dustmaps with GNU General Public License v2.0 | 5 votes |
def initialize_options(self): install.initialize_options(self) self.large_data_dir = None
Example #17
Source File: setup.py From cloudify-manager with Apache License 2.0 | 5 votes |
def initialize_options(self): install.initialize_options(self) self.do_not_fail = None
Example #18
Source File: setup.py From Deepbinner with GNU General Public License v3.0 | 5 votes |
def initialize_options(self): install.initialize_options(self) self.makeargs = None
Example #19
Source File: setup.py From symengine.py with MIT License | 5 votes |
def initialize_options(self): _install.initialize_options(self) self.define = None self.symengine_dir = None self.generator = None self.build_type = "Release"
Example #20
Source File: setup.py From symengine.py with MIT License | 5 votes |
def initialize_options(self): _build_ext.initialize_options(self) self.define = None self.symengine_dir = None self.generator = None self.build_type = "Release"
Example #21
Source File: setup.py From talon with Apache License 2.0 | 5 votes |
def initialize_options(self): install.initialize_options(self) self.no_ml = None
Example #22
Source File: setup.py From future-fstrings with MIT License | 5 votes |
def initialize_options(self): _install.initialize_options(self) # Use this prefix to get loaded as early as possible name = 'aaaaa_' + self.distribution.metadata.name contents = 'import sys; exec({!r})\n'.format(PTH) self.extra_path = (name, contents)
Example #23
Source File: setup.py From nanopype with MIT License | 5 votes |
def initialize_options(self): install.initialize_options(self) self.tools = None
Example #24
Source File: setup.py From pycorpora with MIT License | 5 votes |
def initialize_options(self, *args, **kwargs): install.initialize_options(self, *args, **kwargs) self.corpora_zip_url = None
Example #25
Source File: setup.py From pcocc with GNU General Public License v3.0 | 5 votes |
def initialize_options(self): self.unitdir = None self.mandir='share/man' self.pkgdocdir='share/doc/pcocc' self.sysconfdir='/etc' install.initialize_options(self)
Example #26
Source File: setup.py From pcocc with GNU General Public License v3.0 | 5 votes |
def initialize_options(self): bdist_rpm.initialize_options(self) self.macros = None
Example #27
Source File: setup.py From NURBS-Python with MIT License | 5 votes |
def initialize_options(self): test_command.initialize_options(self) self.pytest_args = ""
Example #28
Source File: setup.py From NURBS-Python with MIT License | 5 votes |
def initialize_options(self): install_command.initialize_options(self) self.use_cython = 0 self.use_source = 0
Example #29
Source File: setup.py From dustmaps with GNU General Public License v2.0 | 5 votes |
def initialize_options(self): self.map_name = None