_install_data.run(self)

        # After data files installation ...
        # ... parse configuration files to update installation dir
        if self.data_files:
            parse_files(to_be_parsed_files, alignak_cfg)

# Get default Alignak paths ...
alignak_cfg = get_alignak_cfg()
if not alignak_cfg:
    sys.exit("Alignak default paths not found!")


# Build list of all installable package files
(data_files, to_be_parsed_files, to_be_installed_files) = get_files(
    alignak_cfg, manifest["__pkg_name__"], manifest["__module_type__"], module=True
)

setup(
    name=manifest["__pkg_name__"],
    version=manifest["__version__"],

    # Metadata for PyPI
    author=manifest["__author__"],
    author_email=manifest["__author_email__"],
    keywords="alignak monitoring module " + manifest["__module_type__"],
    url=manifest["__url__"],
    license=manifest["__license__"],
    description=manifest["__description__"],
    long_description=open('README.rst').read(),
        _install_data.run(self)

        # After data files installation ...
        # ... parse configuration files to update installation dir
        if self.data_files:
            parse_files(to_be_parsed_files, alignak_cfg)


# Get default Alignak paths ...
alignak_cfg = get_alignak_cfg()
if not alignak_cfg:
    sys.exit("Alignak default paths not found!")

# Build list of all installable package files
(data_files, to_be_parsed_files, to_be_installed_files) = get_files(
    alignak_cfg, manifest["__pkg_name__"], manifest["__checks_type__"]
)

for df in data_files:
    print df

setup(
    name=manifest["__pkg_name__"],
    version=manifest["__version__"],

    # Metadata for PyPI
    author=manifest["__author__"],
    author_email=manifest["__author_email__"],
    keywords="alignak monitoring pack checks " + manifest["__checks_type__"],
    url=manifest["__url__"],
    license=manifest["__license__"],
        # After data files installation ...
        # ... parse configuration files to update installation dir
        if self.data_files:
            parse_files(to_be_parsed_files, alignak_cfg)


# Get default Alignak paths ...
alignak_cfg = get_alignak_cfg()
if not alignak_cfg:
    sys.exit("Alignak default paths not found!")

# Build list of all installable package files
(data_files, to_be_parsed_files,
 to_be_installed_files) = get_files(alignak_cfg,
                                    manifest["__pkg_name__"],
                                    manifest["__module_types__"],
                                    module=True)

setup(
    name=manifest["__pkg_name__"],
    version=manifest["__version__"],

    # Metadata for PyPI
    author=manifest["__author__"],
    author_email=manifest["__author_email__"],
    keywords="alignak monitoring module " + manifest["__module_types__"],
    url=manifest["__url__"],
    license=manifest["__license__"],
    description=manifest["__description__"],
    long_description=open('README.rst').read(),
    classifiers=[