-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompile.py
More file actions
29 lines (23 loc) · 990 Bytes
/
compile.py
File metadata and controls
29 lines (23 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- coding: utf-8 -*-
"""
Created on Wed May 23 10:53:53 2018
@author: tjbanks
"""
from cx_Freeze import setup, Executable
base = None
executables = [Executable("SimAgentMPI.py", base=base, icon = "SimAgentMPI/icons/sa_icon.ico")]
packages = ["idna","requests","time","re","subprocess","threading","tempfile","shutil","os","random","numpy","pandas","paramiko","zipfile","tkinter","tarfile","SimAgentMPI.MainWindow","SimAgentMPI.NewJobWindow","SimAgentMPI.NewServerConfig","SimAgentMPI.SimDirectory","SimAgentMPI.SimJob","SimAgentMPI.SimServer","SimAgentMPI.tktable","SimAgentMPI.Utils","SimAgentMPI.ParametricSweep","SimAgentMPI.nsg.nsgclient","SimAgentMPI.nsg.pyjavaproperties"]
folders = ['SimAgentMPI/']
options = {
'build_exe': {
'packages':packages,
'include_files':folders
},
}
setup(
name = "SimAgentMPI",
options = options,
version = "1",
description = 'SimAgentMPI Nair Lab (Tyler Banks)',
executables = executables
)