Skip to content
Snippets Groups Projects
Commit 9e646cf0 authored by inso's avatar inso
Browse files

Merge branch 'dev' of https://github.com/ucoin-io/cutecoin into dev

parents 6cbb9285 ce4ce985
Branches
Tags
No related merge requests found
......@@ -18,7 +18,7 @@ pip install base58
pip install git+https://github.com/Insoleet/quamash.git@sockets_only
pip install aiohttp
pip install git+https://github.com/ucoin-io/ucoin-python-api.git
pip install git+https://github.com/Insoleet/pretenders.git@develop
pip install pretenders
python gen_resources.py
if %errorlevel% neq 0 exit /b 1s
......
......@@ -12,6 +12,8 @@ from PyQt5 import QtCore
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'src')))
print(sys.path)
print("Environnement:")
print(os.environ)
includes = ["sip", "re", "json", "logging",
"hashlib", "os", "urllib",
"ucoinpy", "pylibscrypt"]
......@@ -29,7 +31,7 @@ if sys.platform == "win32":
if os.path.isfile(os.path.join(os.path.dirname(path), "libEGL.dll")):
libEGL_path = os.path.join(os.path.dirname(path), "libEGL.dll")
if 'CONDA_ENV_PATH' in os.environ:
if 'CONDA_DEFAULT_ENV' in os.environ:
# Check if we are in Conda env
path = QtCore.QCoreApplication.libraryPaths()[0]
libEGL_path = os.path.join(path, "Scripts", "libEGL.dll")
......@@ -57,6 +59,15 @@ else:
"libsodium.so.13")
includefiles.append((libsodium_path, "libsodium.so.13"))
print("Includes : ")
print(includes)
print("Excludes : ")
print(exclude)
print("Include files : ")
print(includefiles)
print("Packages : ")
print(packages)
print(sys.path)
options = {"path": sys.path,
"includes": includes,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment