Manual for cxgen 2.0.0:

1. cxgen.app()
	Usage: A script generator for the module for cx_Freeze.
		It asks you a set of questions and with the
		answers provided, it generates a script that you can use to turn your python program into an exe file.


2. cxgen.run(appname,filename,tkinterusage,console,icon)
	Usage: Fill in the parameters and it will generate a script
		for the module cx_Freeze


		appname parameter: This parameter should be the name of your application

		filename parameter: This parameter should be the name of your python file you 
					want to convert. ex: 'helloworld.py'

		tkinterusage parameter: This parameter is for if you want tkinter built into
					your application - 
					make this paramater True if you want tkinter
					if you do not want tkintermake this parameter False

		console parameter: This parameter is for if you want the console window
					in your application - 
					make this paramater True if you want the console window,
					if you do not want the console window make this parameter False

		icon parameter: This parameter should be if you want your application to have an icon-
					make this paramater your icon filename if you want an icon,
					ex. 'icon.ico'
					if you do not want an icon, make this parameter None

					NOTE: On Windows, the icon file MUST be a .ico file.

		***NEW***: cdFolder parameter:
					This parameter by default is set to None. If you supply a folder,
					it will change the directory to the directory supplied in this
					parameter


3. cxgen.cxgen_license()
	Usage: Shows the license of cxgen

4. cxgen.manual()
	Usage: Shows the manual of cxgen (It shows this page!)

5. cxgen.about()
	Usage: Shows some information on cxgen