Skip to content
Snippets Groups Projects
Commit 7f318205 authored by inso's avatar inso
Browse files

Revert "Revert "Cutecoin 0.5 arrives !""

This reverts commit ebbbc390.
parent ebbbc390
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'lib'))) ...@@ -12,7 +12,7 @@ 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'))) sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'src')))
print(sys.path) print(sys.path)
includes = ["sip", "re", "json", "logging", "hashlib", "os", "urllib", "ucoinpy", "requests", "cutecoin.core"] includes = ["sip", "re", "json", "logging", "hashlib", "os", "urllib", "ucoinpy", "requests"]
excludes = [] excludes = []
packages = ["libnacl", "pylibscrypt"] packages = ["libnacl", "pylibscrypt"]
...@@ -34,7 +34,7 @@ if sys.platform == "win32": ...@@ -34,7 +34,7 @@ if sys.platform == "win32":
file_type=".exe" file_type=".exe"
target = Executable( target = Executable(
script = "src/cutecoin/__init__.py", script = "src/cutecoin/main.py",
targetName="cutecoin"+file_type, targetName="cutecoin"+file_type,
base = base, base = base,
compress = False, compress = False,
......
'''
Created on 1 févr. 2014
@author: inso
'''
import sys
from PyQt5.QtWidgets import QApplication, QDialog
from cutecoin.gui.mainWindow import MainWindow
from cutecoin.core.app import Application
if __name__ == '__main__':
cutecoin = QApplication(sys.argv)
app = Application(sys.argv)
window = MainWindow(app)
window.show()
sys.exit(cutecoin.exec_())
pass
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
""" """
Created on 1 févr. 2014 Created on 1 févr. 2014
...@@ -9,8 +6,7 @@ Created on 1 févr. 2014 ...@@ -9,8 +6,7 @@ Created on 1 févr. 2014
import signal import signal
import sys import sys
import os import os
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')))
from PyQt5.QtWidgets import QApplication, QDialog from PyQt5.QtWidgets import QApplication, QDialog
from cutecoin.gui.mainWindow import MainWindow from cutecoin.gui.mainWindow import MainWindow
from cutecoin.core.app import Application from cutecoin.core.app import Application
......
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