Skip to content

Commit

Permalink
fix(//py): Add new dirs to remove during clean
Browse files Browse the repository at this point in the history
Signed-off-by: Naren Dasan <naren@narendasan.com>
Signed-off-by: Naren Dasan <narens@nvidia.com>
  • Loading branch information
narendasan committed Oct 20, 2021
1 parent e847abd commit d2cc1e9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down

0 comments on commit d2cc1e9

Please sign in to comment.