Skip to content

Commit d2cc1e9

Browse files
committed
fix(//py): Add new dirs to remove during clean
Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
1 parent e847abd commit d2cc1e9

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Diff for: py/setup.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,15 @@ def run(self):
171171
class CleanCommand(Command):
172172
"""Custom clean command to tidy up the project root."""
173173
PY_CLEAN_FILES = [
174-
'./build', './dist', './trtorch/__pycache__', './trtorch/lib', './*.pyc', './*.tgz', './*.egg-info'
174+
'./build',
175+
'./dist',
176+
'./trtorch/__pycache__',
177+
'./trtorch/lib',
178+
'./trtorch/include',
179+
'./trtorch/bin',
180+
'./*.pyc',
181+
'./*.tgz',
182+
'./*.egg-info'
175183
]
176184
description = "Command to tidy up the project root"
177185
user_options = []

0 commit comments

Comments
 (0)