[resources]
This commit is contained in:
parent
da14623062
commit
0fcacf7d36
@ -4,6 +4,8 @@ from PyQt5.QtGui import QIcon
|
|||||||
from PyQt5.QtMultimedia import QMediaContent
|
from PyQt5.QtMultimedia import QMediaContent
|
||||||
from PyQt5.QtCore import QUrl
|
from PyQt5.QtCore import QUrl
|
||||||
|
|
||||||
|
import resources
|
||||||
|
|
||||||
organization = "neuroetho.uni-tuebingen.de"
|
organization = "neuroetho.uni-tuebingen.de"
|
||||||
application = "blipblop"
|
application = "blipblop"
|
||||||
version = 0.1
|
version = 0.1
|
||||||
|
@ -2,7 +2,6 @@ from PyQt5.QtWidgets import QWidget, QMainWindow, QMenuBar, QToolBar, QAction, Q
|
|||||||
from PyQt5.QtGui import QIcon, QKeySequence
|
from PyQt5.QtGui import QIcon, QKeySequence
|
||||||
from PyQt5.QtCore import QSize, Qt
|
from PyQt5.QtCore import QSize, Qt
|
||||||
|
|
||||||
import resources as res
|
|
||||||
import blipblop.constants as cnst
|
import blipblop.constants as cnst
|
||||||
from blipblop.ui.help import HelpDialog
|
from blipblop.ui.help import HelpDialog
|
||||||
from blipblop.ui.about import AboutDialog
|
from blipblop.ui.about import AboutDialog
|
||||||
|
@ -15,7 +15,11 @@
|
|||||||
<file alias="new_session_larg">icons/new_session_large.png</file>
|
<file alias="new_session_larg">icons/new_session_large.png</file>
|
||||||
<file alias="results_table">icons/blipblop_table.png</file>
|
<file alias="results_table">icons/blipblop_table.png</file>
|
||||||
<file alias="settings">icons/settings.png</file>
|
<file alias="settings">icons/settings.png</file>
|
||||||
|
</qresource>
|
||||||
|
<qresource prefix="sounds">
|
||||||
|
<file alias="bell">sounds/bell.wav</file>
|
||||||
|
<file alias="message">sounds/message.wav</file>
|
||||||
|
<file alias="complete">sounds/complete.wav</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="docs">
|
<qresource prefix="docs">
|
||||||
<file alias="index">docs/index.md</file>
|
<file alias="index">docs/index.md</file>
|
||||||
|
2
setup.py
2
setup.py
@ -27,7 +27,7 @@ packages = [
|
|||||||
"blipblop",
|
"blipblop",
|
||||||
]
|
]
|
||||||
|
|
||||||
install_req = ["PyQt5", "json", "os", "glob"]
|
install_req = ["PyQt5"]
|
||||||
|
|
||||||
data_files = [("icons", glob.glob(os.path.join("icons", "*.png"))),
|
data_files = [("icons", glob.glob(os.path.join("icons", "*.png"))),
|
||||||
("icons", glob.glob(os.path.join("icons", "*.ic*"))),
|
("icons", glob.glob(os.path.join("icons", "*.ic*"))),
|
||||||
|
Loading…
Reference in New Issue
Block a user