Initial commit
This commit is contained in:
23
setup.py
Normal file
23
setup.py
Normal file
@@ -0,0 +1,23 @@
|
||||
import os.path
|
||||
import sys
|
||||
from cx_Freeze import setup, Executable
|
||||
|
||||
build_exe_options = {
|
||||
"packages": ["os", "pygame", "lxml"],
|
||||
"excludes": ["tkinter", "numpy"],
|
||||
"include_files": ["arcade.png"]
|
||||
}
|
||||
|
||||
base = None
|
||||
if sys.platform == "win32":
|
||||
base = "Win32GUI"
|
||||
|
||||
setup(
|
||||
name="mfe",
|
||||
version="0.1",
|
||||
description="MAME FrontEnd",
|
||||
options={"build_exe": build_exe_options},
|
||||
executables=[
|
||||
Executable(
|
||||
"mfe.py", base=base, icon=os.path.join('images', 'arcade.ico'))
|
||||
])
|
||||
Reference in New Issue
Block a user