diff --git a/setup.py b/setup.py
index b7cc619aa0a15eff209d60b81f792d1ba5ab034a..85a37fccf04458f8251427f00472c002d7953623 100644
--- a/setup.py
+++ b/setup.py
@@ -25,11 +25,14 @@ options = {"path": sys.path,
 #############################################################################
 # preparation des cibles
 base = None
+file_type=""
 if sys.platform == "win32":
     base = "Win32GUI"
+    file_type=".exe"
 
 target = Executable(
     script = "src/cutecoin/__init__.py",
+    targetName="cutecoin"+file_type,
     base = base,
     compress = True,
     icon = None,