module documentation

Undocumented

Function inspect_setup Undocumented
Function inspect_setup_cfg Undocumented
Function normalize Normalize a word by converting it to lower-case and removing all characters that are not 'a',...,'z'. :param word: Word to normalize :type word: str or unicode :return: normalized word :rtype word: str or unicode...
Function parse_setup_py Undocumented
Function setup Undocumented
Function setuptools_method Undocumented
Constant NON_AZ_REGEXP Undocumented
def inspect_setup(parent_dir, elem): (source)

Undocumented

def inspect_setup_cfg(parent_dir, name, error=2): (source)

Undocumented

def normalize(word): (source)

Normalize a word by converting it to lower-case and removing all characters that are not 'a',...,'z'. :param word: Word to normalize :type word: str or unicode :return: normalized word :rtype word: str or unicode

def parse_setup_py(parent_dir): (source)

Undocumented

def setup(**kwargs): (source)

Undocumented

def setuptools_method(): (source)

Undocumented

NON_AZ_REGEXP = (source)

Undocumented

Value
re.compile(r'[^a-z]')