当前位置: 首页>>代码示例>>Python>>正文


Python Command.__init__方法代码示例

本文整理汇总了Python中distutils.core.Command.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python Command.__init__方法的具体用法?Python Command.__init__怎么用?Python Command.__init__使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在distutils.core.Command的用法示例。


在下文中一共展示了Command.__init__方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _looks_like_package

# 需要导入模块: from distutils.core import Command [as 别名]
# 或者: from distutils.core.Command import __init__ [as 别名]
def _looks_like_package(path):
        return os.path.isfile(os.path.join(path, '__init__.py')) 
开发者ID:jpush,项目名称:jbox,代码行数:4,代码来源:__init__.py

示例2: __init__

# 需要导入模块: from distutils.core import Command [as 别名]
# 或者: from distutils.core.Command import __init__ [as 别名]
def __init__(self, dist, **kw):
        """
        Construct the command for dist, updating
        vars(self) with any keyword parameters.
        """
        _Command.__init__(self, dist)
        vars(self).update(kw) 
开发者ID:jpush,项目名称:jbox,代码行数:9,代码来源:__init__.py

示例3: __init__

# 需要导入模块: from distutils.core import Command [as 别名]
# 或者: from distutils.core.Command import __init__ [as 别名]
def __init__(self, dist, **kw):
        # Add support for keyword arguments
        _Command.__init__(self,dist)
        for k,v in kw.items():
            setattr(self,k,v) 
开发者ID:MayOneUS,项目名称:pledgeservice,代码行数:7,代码来源:__init__.py

示例4: __init__

# 需要导入模块: from distutils.core import Command [as 别名]
# 或者: from distutils.core.Command import __init__ [as 别名]
def __init__(self, dist):
        Command.__init__(self, dist)
        self.runner = TestToolsTestRunner(sys.stdout) 
开发者ID:byt3bl33d3r,项目名称:pth-toolkit,代码行数:5,代码来源:distutilscmd.py

示例5: __init__

# 需要导入模块: from distutils.core import Command [as 别名]
# 或者: from distutils.core.Command import __init__ [as 别名]
def __init__(self, *args, **kwargs):
        """Metadata dictionary is created, all the metadata attributes,
        that were not found are set to default empty values. Checks of data
        types are performed.
        """
        Command.__init__(self, *args, **kwargs)

        self.metadata = {}

        for attr in ['setup_requires', 'tests_require', 'install_requires',
                     'packages', 'py_modules', 'scripts']:
            self.metadata[attr] = to_list(getattr(self.distribution, attr, []))

        try:
            for k, v in getattr(
                    self.distribution, 'extras_require', {}).items():
                if k in ['test, docs', 'doc', 'dev']:
                    attr = 'setup_requires'
                else:
                    attr = 'install_requires'
                self.metadata[attr] += to_list(v)
        except (AttributeError, ValueError):
            # extras require are skipped in case of wrong data format
            # can't log here, because this file is executed in a subprocess
            pass

        for attr in ['url', 'long_description', 'description', 'license']:
            self.metadata[attr] = to_str(
                getattr(self.distribution.metadata, attr, None))

        self.metadata['classifiers'] = to_list(
            getattr(self.distribution.metadata, 'classifiers', []))

        if isinstance(getattr(self.distribution, "entry_points", None), dict):
            self.metadata['entry_points'] = self.distribution.entry_points
        else:
            self.metadata['entry_points'] = None

        self.metadata['test_suite'] = getattr(
            self.distribution, "test_suite", None) is not None 
开发者ID:fedora-python,项目名称:pyp2rpm,代码行数:42,代码来源:extract_dist.py

示例6: find_packages

# 需要导入模块: from distutils.core import Command [as 别名]
# 或者: from distutils.core.Command import __init__ [as 别名]
def find_packages(where='.', exclude=()):
    """Return a list all Python packages found within directory 'where'

    'where' should be supplied as a "cross-platform" (i.e. URL-style) path; it
    will be converted to the appropriate local path syntax.  'exclude' is a
    sequence of package names to exclude; '*' can be used as a wildcard in the
    names, such that 'foo.*' will exclude all subpackages of 'foo' (but not
    'foo' itself).
    """
    out = []
    stack=[(convert_path(where), '')]
    while stack:
        where,prefix = stack.pop(0)
        for name in os.listdir(where):
            fn = os.path.join(where,name)
            looks_like_package = (
                '.' not in name
                and os.path.isdir(fn)
                and os.path.isfile(os.path.join(fn, '__init__.py'))
            )
            if looks_like_package:
                out.append(prefix+name)
                stack.append((fn, prefix+name+'.'))
    for pat in list(exclude)+['ez_setup']:
        from fnmatch import fnmatchcase
        out = [item for item in out if not fnmatchcase(item,pat)]
    return out 
开发者ID:GeekTrainer,项目名称:Flask,代码行数:29,代码来源:__init__.py


注:本文中的distutils.core.Command.__init__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。