mirror of
				https://github.com/kovidgoyal/calibre.git
				synced 2025-11-04 03:27:00 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			711 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			711 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# A simple setup script to create an executable using matplotlib.
 | 
						|
#
 | 
						|
# test_matplotlib.py is a very simple matplotlib application that demonstrates
 | 
						|
# its use.
 | 
						|
#
 | 
						|
# Run the build process by running the command 'python setup.py build'
 | 
						|
#
 | 
						|
# If everything works well you should find a subdirectory in the build
 | 
						|
# subdirectory that contains the files needed to run the application
 | 
						|
 | 
						|
import cx_Freeze
 | 
						|
import sys
 | 
						|
 | 
						|
base = None
 | 
						|
if sys.platform == "win32":
 | 
						|
    base = "Win32GUI"
 | 
						|
 | 
						|
executables = [
 | 
						|
        cx_Freeze.Executable("test_matplotlib.py", base = base)
 | 
						|
]
 | 
						|
 | 
						|
cx_Freeze.setup(
 | 
						|
        name = "test_matplotlib",
 | 
						|
        version = "0.1",
 | 
						|
        description = "Sample matplotlib script",
 | 
						|
        executables = executables)
 | 
						|
 |