start repo

This commit is contained in:
Ross
2023-12-22 16:08:54 +00:00
commit 7812e803c9
11 changed files with 2023 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
from distutils.core import setup # Need this to handle modules
import py2exe
import math # We have to import all modules used in our program
import zmq
setup(console=['anon_gui.py'], py_modules=['anon', 'anon_gui', 'reslice', 'sortList', 'uploader', 'wxDicomViewer'], options={
'py2exe': {
'includes': ['zmq.backend.cython'],
'excludes': ['zmq.libzmq'],
'dll_excludes': ['libzmq.pyd'],
}
},
data_files=[
('lib', (zmq.libzmq.__file__,))
])