servent_setup.py 481 Bytes
# -*- coding: utf-8 -*-
'''
author: Danilo Assis
date: 26/09/2016


This code is used to generate a binary executable file

You have to include inside PYTHON_PATH environment variable the path to nvda source files to compile correctly servent.py

'''
from distutils.core import setup
import py2exe

print "Usage: \npython servent_setup.exe py2exe\nInside the file you define whats the name of your module."
raw_input("Do you understand? Y/N ")
setup(console=['source\\servent.py'])