Skip to content

Commit

Permalink
Added cx_freeze setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
imayhaveborkedit committed Aug 6, 2017
1 parent 2a43279 commit 7533fc8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import sys

from cx_Freeze import setup, Executable

sys.argv.append('build_exe')

options = {
'build_exe': {

'excludes': ['asyncio', 'lib2to3'],
'include_msvcr': True,
'zip_include_packages': '*',
'zip_exclude_packages': '',
}
}

executables = [
Executable('main.py', base='Console', targetName = 'urw.exe')
]

setup(name='urw_stat_roller',
version = '2.0',
description = 'Stat roller for UnReal World',
options = options,
executables = executables)

0 comments on commit 7533fc8

Please sign in to comment.