Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
IOHexperimenter/ | H | 03-May-2022 | - | 12,998 | 9,640 | |
IOHexperimenter.egg-info/ | H | 03-May-2022 | - | 47 | 34 | |
src/ | H | 03-May-2022 | - | 73,872 | 65,780 | |
tests/ | H | 03-May-2022 | - | 174 | 140 | |
MANIFEST.in | H A D | 03-May-2022 | 143 | 5 | 5 | |
PKG-INFO | H A D | 03-May-2022 | 1.6 KiB | 47 | 34 | |
README.md | H A D | 03-May-2022 | 857 | 33 | 20 | |
setup.cfg | H A D | 03-May-2022 | 166 | 14 | 9 | |
setup.py | H A D | 03-May-2022 | 1.7 KiB | 62 | 51 |
README.md
1 2# Python Interface to IOHexperimenter 3 4This 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/). 5 6## build/upload the python package 7 8To build the source file: 9 10```python 11python setup.py build 12``` 13 14To install the built package locally: 15 16```python 17python setup.py install 18``` 19 20To prepare the source distribution package: 21 22```python 23python setup.py sdist 24``` 25 26To distribute package to PyPI: 27 28```python 29python -m twine upload dist/* 30``` 31 32Of course, you need install `twine` package first. 33