Metadata-Version: 2.1
Name: IOHexperimenter
Version: 0.0.1.dev2
Summary: The experimenter for Iterative Optimization Heuristic
Home-page: https://github.com/IOHprofiler/IOHexperimenter
Author: Furong Ye, Diederick Vermetten, and Hao Wang
Author-email: f.ye@liacs.leidenuniv.nl
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires-Python: >=3.6
Description-Content-Type: text/markdown


# Python Interface to IOHexperimenter

This is the python interface to [IOHexperimenter](https://github.com/IOHprofiler/IOHexperimenter), which is the experimentation environment for Iterative Optimization Heuristics (IOHs). The source code of IOHexperimenter is written in _C++_ and its python interface is realized using [__SWIG__](http://www.swig.org/). IOHexperimenter is a part of the bigger project called [__IOHprofiler__](https://iohprofiler.github.io/).

## build/upload the python wheel

To build the wheel (binary) file:

```python
python setup.py bdist_wheel
```

To push to PyPi:

```python
python -m twine upload dist/the-wheel-file
```

Of course you need install `twine` package first ;)

