Skip to content
Snippets Groups Projects
Commit 91106852 authored by unknown's avatar unknown
Browse files

Fixed file for windows

parent 046463fa
No related branches found
No related tags found
No related merge requests found
......@@ -3,22 +3,23 @@
# source d'inspiration: http://wiki.wxpython.org/cx_freeze
import sys, os
import sys, os, subprocess, multiprocessing
from cx_Freeze import setup, Executable
#############################################################################
# preparation des options
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'lib')))
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'src')))
print(sys.path)
includes = ["sip", "re", "json", "logging", "hashlib", "os", "urllib", "ucoinpy"]
includes = ["sip", "re", "json", "logging", "hashlib", "os", "urllib", "ucoinpy", "requests"]
excludes = []
packages = ["gnupg"]
options = {"path": sys.path,
"includes": includes,
"excludes": excludes,
"packages": packages
"packages": packages,
}
#############################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment