Metadata-Version: 2.1
Name: simple-grid-yaml-compiler
Version: 1.0.4
Summary: The YAML compiler for the SIMPLE Grid Framework
Home-page: https://github.com/WLCG-Lightweight-Sites/simple_grid_yaml_compiler
Author: Mayank Sharma
Author-email: mayank.sharma@cern.ch
License: Apache Software License
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Description-Content-Type: text/markdown
Requires-Dist: PyYaml
Requires-Dist: ruamel.ordereddict
Requires-Dist: ruamel.yaml
Requires-Dist: argparse

# simple_grid_yaml_compiler
[![CircleCI](https://circleci.com/gh/WLCG-Lightweight-Sites/simple_grid_yaml_compiler/tree/master.svg?style=svg)](https://circleci.com/gh/WLCG-Lightweight-Sites/simple_grid_yaml_compiler/tree/master)
[![Build Status](https://travis-ci.org/WLCG-Lightweight-Sites/simple_grid_yaml_compiler.svg?branch=master)](https://travis-ci.org/WLCG-Lightweight-Sites/simple_grid_yaml_compiler?branch=master)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/WLCG-Lightweight-Sites/wlcg_lightweight_site_config_validation_engine/issues)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Generates the extended YAML output for an input site_level_configuration_file

# Setup development Environment
You'll need Python 2.7 or higher.
- Fork this repository and clone your fork in your development machine.
- Create a virtualenv with Python >= 2.7 and install all the required packages listed in the requirements.txt file.
- At the root of the directory, create a .temp folder. ```mkdir .temp```
- Create a site_level_configuration_file.yaml in the root directory. You can use the one available in the [puppet module](https://github.com/WLCG-Lightweight-Sites/simple_grid_puppet_module/tree/master/templates).
- Execute the compiler using the following command template from the root directory
```
python simple_grid_yaml_compiler.py {PATH_TO_SITE_LEVEL_CONFIG_FILE} -o {PATH_TO_AUGMENTED_SITE_LEVEL_CONFIG_FILE}
```
For instance, 
```
python simple_grid_yaml_compiler.py ./tests/resources/complete_config.yaml -o ./tests/output.yaml
```
- After running the compiler, the output would be generated at {PATH_TO_AUGMENTED_SITE_LEVEL_CONFIG_FILE}



