diff --git a/setup.py b/setup.py index 66881626659e5e3f16607123bc992eab57a1c640..347935fa0aeded4b3c1fb37d474814a3d977968c 100644 --- a/setup.py +++ b/setup.py @@ -26,9 +26,7 @@ if sys.platform == "win32": pyqt_path = QtCore.QCoreApplication.libraryPaths()[0] print(pyqt_path) libEGL_path = os.path.join(os.path.dirname(pyqt_path), "libEGL.dll") - qt5svg_path = os.path.join(os.path.dirname(pyqt_path), "Qt5Svg.dll") includefiles.append(libEGL_path) - includefiles.append(qt5svg_path) includefiles.append("platforms/win32/libsodium.dll") elif sys.platform == "darwin": @@ -36,8 +34,6 @@ elif sys.platform == "darwin": else: pass -includefiles.append((os.path.join(os.path.dirname(__file__), 'res', 'certs', "DigiCertHighAssuranceEVRootCA.crt"), "DigiCertHighAssuranceEVRootCA.crt")) - options = {"path": sys.path, "includes": includes, "include_files": includefiles, diff --git a/src/cutecoin/gui/__init__.py b/src/cutecoin/gui/__init__.py index 82d70b56cad15bed8a6accdacfde0024af7e40a8..19560381f7b99b47389d0bd8d6fddad655d596eb 100644 --- a/src/cutecoin/gui/__init__.py +++ b/src/cutecoin/gui/__init__.py @@ -3,3 +3,4 @@ Created on 11 mars 2014 @author: inso ''' +from PyQt5 import QtSvg \ No newline at end of file