diff --git a/py/setup.py b/py/setup.py index 985ff0de9b..b572c09ae6 100644 --- a/py/setup.py +++ b/py/setup.py @@ -171,7 +171,15 @@ def run(self): class CleanCommand(Command): """Custom clean command to tidy up the project root.""" PY_CLEAN_FILES = [ - './build', './dist', './trtorch/__pycache__', './trtorch/lib', './*.pyc', './*.tgz', './*.egg-info' + './build', + './dist', + './trtorch/__pycache__', + './trtorch/lib', + './trtorch/include', + './trtorch/bin', + './*.pyc', + './*.tgz', + './*.egg-info' ] description = "Command to tidy up the project root" user_options = []