uv build local project dev
This commit is contained in:
19
main.py
Normal file
19
main.py
Normal file
@@ -0,0 +1,19 @@
|
||||
import logging
|
||||
import sys
|
||||
|
||||
from grid.ui.window import Window
|
||||
from PySide6.QtWidgets import QApplication
|
||||
|
||||
def main():
|
||||
print("Hello from sphere-grid!")
|
||||
logging.basicConfig(
|
||||
level=logging.DEBUG,
|
||||
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
|
||||
)
|
||||
app = QApplication(sys.argv)
|
||||
w = Window() # noqa: F841
|
||||
app.exec()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user