inih library package for conan.io https://github.com/benhoyt/inih
Find conan package here: https://bintray.com/rd/conan-radalytica/inih:radalytica
- install conan.io
- setup bintray repo
- install inih
- In a nuteshell, run these three commands:
pip install conan
conan remote add conan-radalytica https://api.bintray.com/conan/rd/conan-radalytica
conan install --reomte conan-radalytica inih/44.1@radalytica/stable
For more inormation, refer to conan.io and inih documentation
packages this release from @benhoyt https://github.com/benhoyt/inih/tree/r44
packages this fork from @mohamedghita https://github.com/mohamedghita/inih/tree/r44.1. which supports vectors of string, integer, boolean, and real. The release extends the class INIReader by inih::extended::INIReaderVec. For example:
real_array = [0.0, 1.1, -1.1]
integer_array = [0, 1, -1]
boolean_array = [false, true]
string_array = [hello, array]