diff options
-rwxr-xr-x | setup.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/setup.py b/setup.py index 278c4a7..563e5cb 100755 --- a/setup.py +++ b/setup.py @@ -23,6 +23,13 @@ VERSION = __version__ class BuildBinaryCommand(distutils.cmd.Command): description = 'build binary release' + user_options = [] + + def initialize_options(self): + pass + + def finalize_options(self): + pass def run(self): if sys.platform == 'darwin': |