Metadata-Version: 2.4
Name: eexp_engine
Version: 0.0.26
Summary: A command-line version of the experimentation engine of the ExtremeXP project
Author-email: Ilias Gerostathopoulos <iliasger@gmail.com>
Project-URL: Homepage, https://colab-repo.intracom-telecom.com/colab-projects/extremexp/experiment-execution/experimentation-engine/extremexp-experimentation-engine
Project-URL: Issues, https://colab-repo.intracom-telecom.com/colab-projects/extremexp/experiment-execution/experimentation-engine/extremexp-experimentation-engine/-/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: textX>=4.0.1
Requires-Dist: proactive>=14.1.0.2411110237.dev0
Dynamic: license-file

# ExtremeXP Experimentation Engine (eexp_engine)

This is a Python module for interfacing with the experimentation engine built in the [ExtremeXP](https://extremexp.eu) EU project. 

## Instructions
1. Install the module (in development mode) via ```pip install -e <relative path to exp_engine folder>``` or grab the 
latest stable version on PyPI via ```pip install eexp_engine```.

2. Add your credentials and library paths to the ```eexp_config.py``` file. 

3. Use the module in a Python file:
    ```
    from eexp_engine import runner
    import eexp_config

    runner.run(__file__, <exp_name>, eexp_config)
    ```
