Skip to content
This repository was archived by the owner on Jul 8, 2018. It is now read-only.

Commit e102a2f

Browse files
committed
create setup
1 parent 1a5ce48 commit e102a2f

File tree

185 files changed

+61
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

185 files changed

+61
-8
lines changed

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

app/Background.py renamed to CuriElements/Background.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
from gtts import gTTS
88
from wikipedia import wikipedia
99

10-
from app.Atoms import Atoms
11-
from app.CodeHuntersBox import CodeHuntersBox
12-
from app.CuriButton import ElementButton, CuriButton
10+
from CuriElements.Atoms import Atoms
11+
from CuriElements.CodeHuntersBox import CodeHuntersBox
12+
from CuriElements.CuriButton import ElementButton, CuriButton
1313

1414

1515
class Background(QWidget):
@@ -131,4 +131,4 @@ def closeEvent(self, event):
131131
self.player.stop()
132132
super().closeEvent(event)
133133

134-
import app.resource_rc
134+
import CuriElements.resource_rc
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

CuriElements/main.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
"""
2+
/ ___|___ __| | ___| | | |_ _ _ __ | |_ ___ _ __ ___ | | __ _| |__
3+
| | / _ \ / _` |/ _ \ |_| | | | | '_ \| __/ _ \ '__/ __| | | / _` | '_ \
4+
| |__| (_) | (_| | __/ _ | |_| | | | | || __/ | \__ \ | |__| (_| | |_) |
5+
\____\___/ \__,_|\___|_| |_|\__,_|_| |_|\__\___|_| |___/ |_____\__,_|_.__/
6+
"""
7+
8+
from PyQt5.QtWidgets import QApplication
9+
10+
from CuriElements.Background import Background
11+
12+
if __name__ == '__main__':
13+
import sys
14+
15+
app = QApplication(sys.argv)
16+
app.setApplicationName('CuriElements')
17+
app.setApplicationDisplayName('CuriElements')
18+
app.setOrganizationName('CodeHuntersLab')
19+
app.setOrganizationDomain('CodeHuntersLab.com')
20+
app.setApplicationVersion('1.0')
21+
w = Background()
22+
w.show()
23+
sys.exit(app.exec_())
File renamed without changes.

0 commit comments

Comments
 (0)