from distutils.core import setup setup( name = "hello", version = "0.1", description = "description", long_description = "long description", scripts = ["hello.py", "hello-install.py"], options = {"bdist_wininst": {"install_script": "hello-install.py"} } )