cppclean
cppclean copied to clipboard
Support Windows by using `setuptools` in `setup.py` instead of `distutils`
pip --install cppclean is not sufficient on my Computer.
I'm unable to execute py cppclean after that.
I have to execute py $AbsolutePathToCppclean
I don't work much with python.
I think it would be pip install cppclean. I'm not sure what py is, but you would need to make sure that the location pip installed the cppclean executable to is in your PATH.
Ah right
It was pip install --upgrade cppclean
I didn't get an executable though.
I only got
AppData\Local\Programs\Python\Python36\Scripts\cppclean
and I call it with py %LOCALAPPDATA%\Programs\Python\Python36\Scripts\cppclean
Oh, I see, this is on Windows. We'll need to upgrade setup.py to use setuptools like for example autoflake does.
Ahh sorry!
I should have mentioned that.