Wheel package is installable for both Linux and Windows users.
I confirmed that a wheel package which created from the redfishtool repository can be also installed on Windows environments:
This would solve issue #28.
You may need to change the release process a little bit, for example:
$ python setup.py sdist bdist_wheel # build packages for both tarball and wheel package
...
$ ls dist
redfishtool-1.0.5-py3-none-any.whl redfishtool-1.0.5.tar.gz
$ twine upload dist/redfishtool-1.0.5-py3-none-any.whl dist/redfishtool-1.0.5.tar.gz # upload for both packages
When I created this issue, I failed redfishtool package installation via pip but looks like it comes from my environment error, I can install the package on a new clean Python environment.
Wheel package is installable for both Linux and Windows users. I confirmed that a wheel package which created from the redfishtool repository can be also installed on Windows environments:
This would solve issue #28. You may need to change the release process a little bit, for example: