work on python 3 compatibility
diff --git a/examples/setup-wxTerminal-py2exe.py b/examples/setup-wxTerminal-py2exe.py
index 21b9c94..2ecebb5 100644
--- a/examples/setup-wxTerminal-py2exe.py
+++ b/examples/setup-wxTerminal-py2exe.py
@@ -1,7 +1,8 @@
 # This is a setup.py example script for the use with py2exe
 from distutils.core import setup
+import os
+import sys
 import py2exe
-import sys, os
 
 #this script is only useful for py2exe so just run that distutils command.
 #that allows to run it with a simple double click.
@@ -31,5 +32,5 @@
     version = "0.1",
     author = "Chris Liechti",
     author_email = "[email protected]",
-    url = "http://pyserial.sf.net",
+    url = "https://pyserial.github.io/pyserial/",
 )