diff --git a/setup.py b/setup.py index cb565e35ff81a..1d7f460fd3e01 100644 --- a/setup.py +++ b/setup.py @@ -92,9 +92,10 @@ def write_version_py(filename='pandas/version.py'): class CleanCommand(Command): """Custom distutils command to clean the .so and .pyc files.""" - user_options = [ ] + user_options = [("all", "a", "") ] def initialize_options(self): + self.all = True self._clean_me = [] self._clean_trees = [] for root, dirs, files in list(os.walk('pandas')):