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

Revert "Cutecoin 0.5 arrives !"

This reverts commit 2617284d.
parent 2617284d
Branches
Tags
No related merge requests found
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
""" """
Created on 1 févr. 2014 Created on 1 févr. 2014
...@@ -6,7 +9,8 @@ Created on 1 févr. 2014 ...@@ -6,7 +9,8 @@ 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
......
...@@ -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"] includes = ["sip", "re", "json", "logging", "hashlib", "os", "urllib", "ucoinpy", "requests", "cutecoin.core"]
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/main.py", script = "src/cutecoin/__init__.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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment